mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 16:02:26 +08:00
完善了protobuf协议文件
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -20,3 +20,6 @@
|
|||||||
|
|
||||||
# Binaries file
|
# Binaries file
|
||||||
bin
|
bin
|
||||||
|
|
||||||
|
# Game protocol protobuf generate file
|
||||||
|
protocol/proto/*.pb.go
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ func (g *GameManager) SceneTransToPointReq(player *model.Player, payloadMsg pb.M
|
|||||||
transPointConfig, exist := gdc.CONF.ScenePointEntries[transPointId]
|
transPointConfig, exist := gdc.CONF.ScenePointEntries[transPointId]
|
||||||
if !exist {
|
if !exist {
|
||||||
sceneTransToPointRsp := &proto.SceneTransToPointRsp{
|
sceneTransToPointRsp := &proto.SceneTransToPointRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SVR_ERROR),
|
Retcode: int32(proto.Retcode_RET_SVR_ERROR),
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.SceneTransToPointRsp, player.PlayerID, player.ClientSeq, sceneTransToPointRsp)
|
g.SendMsg(cmd.SceneTransToPointRsp, player.PlayerID, player.ClientSeq, sceneTransToPointRsp)
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -62,9 +62,9 @@ func (g *GameManager) PlayerGetForceQuitBanInfoReq(player *model.Player, payload
|
|||||||
|
|
||||||
playerGetForceQuitBanInfoRsp := new(proto.PlayerGetForceQuitBanInfoRsp)
|
playerGetForceQuitBanInfoRsp := new(proto.PlayerGetForceQuitBanInfoRsp)
|
||||||
if result {
|
if result {
|
||||||
playerGetForceQuitBanInfoRsp.Retcode = int32(proto.Retcode_RETCODE_RET_SUCC)
|
playerGetForceQuitBanInfoRsp.Retcode = int32(proto.Retcode_RET_SUCC)
|
||||||
} else {
|
} else {
|
||||||
playerGetForceQuitBanInfoRsp.Retcode = int32(proto.Retcode_RETCODE_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
playerGetForceQuitBanInfoRsp.Retcode = int32(proto.Retcode_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.PlayerGetForceQuitBanInfoRsp, player.PlayerID, player.ClientSeq, playerGetForceQuitBanInfoRsp)
|
g.SendMsg(cmd.PlayerGetForceQuitBanInfoRsp, player.PlayerID, player.ClientSeq, playerGetForceQuitBanInfoRsp)
|
||||||
}
|
}
|
||||||
@@ -76,9 +76,9 @@ func (g *GameManager) BackMyWorldReq(player *model.Player, payloadMsg pb.Message
|
|||||||
|
|
||||||
backMyWorldRsp := new(proto.BackMyWorldRsp)
|
backMyWorldRsp := new(proto.BackMyWorldRsp)
|
||||||
if ok {
|
if ok {
|
||||||
backMyWorldRsp.Retcode = int32(proto.Retcode_RETCODE_RET_SUCC)
|
backMyWorldRsp.Retcode = int32(proto.Retcode_RET_SUCC)
|
||||||
} else {
|
} else {
|
||||||
backMyWorldRsp.Retcode = int32(proto.Retcode_RETCODE_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
backMyWorldRsp.Retcode = int32(proto.Retcode_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.BackMyWorldRsp, player.PlayerID, player.ClientSeq, backMyWorldRsp)
|
g.SendMsg(cmd.BackMyWorldRsp, player.PlayerID, player.ClientSeq, backMyWorldRsp)
|
||||||
}
|
}
|
||||||
@@ -90,9 +90,9 @@ func (g *GameManager) ChangeWorldToSingleModeReq(player *model.Player, payloadMs
|
|||||||
|
|
||||||
changeWorldToSingleModeRsp := new(proto.ChangeWorldToSingleModeRsp)
|
changeWorldToSingleModeRsp := new(proto.ChangeWorldToSingleModeRsp)
|
||||||
if ok {
|
if ok {
|
||||||
changeWorldToSingleModeRsp.Retcode = int32(proto.Retcode_RETCODE_RET_SUCC)
|
changeWorldToSingleModeRsp.Retcode = int32(proto.Retcode_RET_SUCC)
|
||||||
} else {
|
} else {
|
||||||
changeWorldToSingleModeRsp.Retcode = int32(proto.Retcode_RETCODE_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
changeWorldToSingleModeRsp.Retcode = int32(proto.Retcode_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.ChangeWorldToSingleModeRsp, player.PlayerID, player.ClientSeq, changeWorldToSingleModeRsp)
|
g.SendMsg(cmd.ChangeWorldToSingleModeRsp, player.PlayerID, player.ClientSeq, changeWorldToSingleModeRsp)
|
||||||
}
|
}
|
||||||
@@ -103,7 +103,7 @@ func (g *GameManager) SceneKickPlayerReq(player *model.Player, payloadMsg pb.Mes
|
|||||||
world := WORLD_MANAGER.GetWorldByID(player.WorldId)
|
world := WORLD_MANAGER.GetWorldByID(player.WorldId)
|
||||||
if player.PlayerID != world.owner.PlayerID {
|
if player.PlayerID != world.owner.PlayerID {
|
||||||
sceneKickPlayerRsp := &proto.SceneKickPlayerRsp{
|
sceneKickPlayerRsp := &proto.SceneKickPlayerRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SVR_ERROR),
|
Retcode: int32(proto.Retcode_RET_SVR_ERROR),
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.SceneKickPlayerRsp, player.PlayerID, player.ClientSeq, sceneKickPlayerRsp)
|
g.SendMsg(cmd.SceneKickPlayerRsp, player.PlayerID, player.ClientSeq, sceneKickPlayerRsp)
|
||||||
return
|
return
|
||||||
@@ -125,7 +125,7 @@ func (g *GameManager) SceneKickPlayerReq(player *model.Player, payloadMsg pb.Mes
|
|||||||
if ok {
|
if ok {
|
||||||
sceneKickPlayerRsp.TargetUid = targetUid
|
sceneKickPlayerRsp.TargetUid = targetUid
|
||||||
} else {
|
} else {
|
||||||
sceneKickPlayerRsp.Retcode = int32(proto.Retcode_RETCODE_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
sceneKickPlayerRsp.Retcode = int32(proto.Retcode_RET_MP_TARGET_PLAYER_IN_TRANSFER)
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.SceneKickPlayerRsp, player.PlayerID, player.ClientSeq, sceneKickPlayerRsp)
|
g.SendMsg(cmd.SceneKickPlayerRsp, player.PlayerID, player.ClientSeq, sceneKickPlayerRsp)
|
||||||
}
|
}
|
||||||
@@ -141,7 +141,7 @@ func (g *GameManager) JoinPlayerSceneReq(player *model.Player, payloadMsg pb.Mes
|
|||||||
}
|
}
|
||||||
|
|
||||||
joinPlayerSceneRsp := new(proto.JoinPlayerSceneRsp)
|
joinPlayerSceneRsp := new(proto.JoinPlayerSceneRsp)
|
||||||
joinPlayerSceneRsp.Retcode = int32(proto.Retcode_RETCODE_RET_JOIN_OTHER_WAIT)
|
joinPlayerSceneRsp.Retcode = int32(proto.Retcode_RET_JOIN_OTHER_WAIT)
|
||||||
g.SendMsg(cmd.JoinPlayerSceneRsp, player.PlayerID, player.ClientSeq, joinPlayerSceneRsp)
|
g.SendMsg(cmd.JoinPlayerSceneRsp, player.PlayerID, player.ClientSeq, joinPlayerSceneRsp)
|
||||||
|
|
||||||
world := WORLD_MANAGER.GetWorldByID(player.WorldId)
|
world := WORLD_MANAGER.GetWorldByID(player.WorldId)
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ func (g *GameManager) GetPlayerSocialDetailReq(player *model.Player, payloadMsg
|
|||||||
}
|
}
|
||||||
getPlayerSocialDetailRsp.DetailData = socialDetail
|
getPlayerSocialDetailRsp.DetailData = socialDetail
|
||||||
} else {
|
} else {
|
||||||
getPlayerSocialDetailRsp.Retcode = int32(proto.Retcode_RETCODE_RET_PLAYER_NOT_EXIST)
|
getPlayerSocialDetailRsp.Retcode = int32(proto.Retcode_RET_PLAYER_NOT_EXIST)
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.GetPlayerSocialDetailRsp, player.PlayerID, player.ClientSeq, getPlayerSocialDetailRsp)
|
g.SendMsg(cmd.GetPlayerSocialDetailRsp, player.PlayerID, player.ClientSeq, getPlayerSocialDetailRsp)
|
||||||
}
|
}
|
||||||
@@ -80,9 +80,9 @@ func (g *GameManager) SetPlayerSignatureReq(player *model.Player, payloadMsg pb.
|
|||||||
|
|
||||||
setPlayerSignatureRsp := new(proto.SetPlayerSignatureRsp)
|
setPlayerSignatureRsp := new(proto.SetPlayerSignatureRsp)
|
||||||
if !object.IsUtf8String(signature) {
|
if !object.IsUtf8String(signature) {
|
||||||
setPlayerSignatureRsp.Retcode = int32(proto.Retcode_RETCODE_RET_SIGNATURE_ILLEGAL)
|
setPlayerSignatureRsp.Retcode = int32(proto.Retcode_RET_SIGNATURE_ILLEGAL)
|
||||||
} else if utf8.RuneCountInString(signature) > 50 {
|
} else if utf8.RuneCountInString(signature) > 50 {
|
||||||
setPlayerSignatureRsp.Retcode = int32(proto.Retcode_RETCODE_RET_SIGNATURE_ILLEGAL)
|
setPlayerSignatureRsp.Retcode = int32(proto.Retcode_RET_SIGNATURE_ILLEGAL)
|
||||||
} else {
|
} else {
|
||||||
player.Signature = signature
|
player.Signature = signature
|
||||||
setPlayerSignatureRsp.Signature = player.Signature
|
setPlayerSignatureRsp.Signature = player.Signature
|
||||||
@@ -97,13 +97,13 @@ func (g *GameManager) SetPlayerNameReq(player *model.Player, payloadMsg pb.Messa
|
|||||||
|
|
||||||
setPlayerNameRsp := new(proto.SetPlayerNameRsp)
|
setPlayerNameRsp := new(proto.SetPlayerNameRsp)
|
||||||
if len(nickName) == 0 {
|
if len(nickName) == 0 {
|
||||||
setPlayerNameRsp.Retcode = int32(proto.Retcode_RETCODE_RET_NICKNAME_IS_EMPTY)
|
setPlayerNameRsp.Retcode = int32(proto.Retcode_RET_NICKNAME_IS_EMPTY)
|
||||||
} else if !object.IsUtf8String(nickName) {
|
} else if !object.IsUtf8String(nickName) {
|
||||||
setPlayerNameRsp.Retcode = int32(proto.Retcode_RETCODE_RET_NICKNAME_UTF8_ERROR)
|
setPlayerNameRsp.Retcode = int32(proto.Retcode_RET_NICKNAME_UTF8_ERROR)
|
||||||
} else if utf8.RuneCountInString(nickName) > 14 {
|
} else if utf8.RuneCountInString(nickName) > 14 {
|
||||||
setPlayerNameRsp.Retcode = int32(proto.Retcode_RETCODE_RET_NICKNAME_TOO_LONG)
|
setPlayerNameRsp.Retcode = int32(proto.Retcode_RET_NICKNAME_TOO_LONG)
|
||||||
} else if len(regexp.MustCompile(`\d`).FindAllString(nickName, -1)) > 6 {
|
} else if len(regexp.MustCompile(`\d`).FindAllString(nickName, -1)) > 6 {
|
||||||
setPlayerNameRsp.Retcode = int32(proto.Retcode_RETCODE_RET_NICKNAME_TOO_MANY_DIGITS)
|
setPlayerNameRsp.Retcode = int32(proto.Retcode_RET_NICKNAME_TOO_MANY_DIGITS)
|
||||||
} else {
|
} else {
|
||||||
player.NickName = nickName
|
player.NickName = nickName
|
||||||
setPlayerNameRsp.NickName = player.NickName
|
setPlayerNameRsp.NickName = player.NickName
|
||||||
@@ -153,7 +153,7 @@ func (g *GameManager) GetPlayerFriendListReq(player *model.Player, payloadMsg pb
|
|||||||
if online {
|
if online {
|
||||||
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_ONLINE
|
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_ONLINE
|
||||||
} else {
|
} else {
|
||||||
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_FREIEND_DISCONNECT
|
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_DISCONNECT
|
||||||
}
|
}
|
||||||
friendPlayer := USER_MANAGER.LoadTempOfflineUserSync(uid)
|
friendPlayer := USER_MANAGER.LoadTempOfflineUserSync(uid)
|
||||||
if friendPlayer == nil {
|
if friendPlayer == nil {
|
||||||
@@ -193,7 +193,7 @@ func (g *GameManager) GetPlayerAskFriendListReq(player *model.Player, payloadMsg
|
|||||||
if online {
|
if online {
|
||||||
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_ONLINE
|
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_ONLINE
|
||||||
} else {
|
} else {
|
||||||
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_FREIEND_DISCONNECT
|
onlineState = proto.FriendOnlineState_FRIEND_ONLINE_STATE_DISCONNECT
|
||||||
}
|
}
|
||||||
friendPlayer := USER_MANAGER.LoadTempOfflineUserSync(uid)
|
friendPlayer := USER_MANAGER.LoadTempOfflineUserSync(uid)
|
||||||
if friendPlayer == nil {
|
if friendPlayer == nil {
|
||||||
|
|||||||
@@ -51,9 +51,9 @@ func (g *GameManager) SceneAvatarStaminaStepReq(player *model.Player, payloadMsg
|
|||||||
sceneAvatarStaminaStepRsp := new(proto.SceneAvatarStaminaStepRsp)
|
sceneAvatarStaminaStepRsp := new(proto.SceneAvatarStaminaStepRsp)
|
||||||
// 角度超过范围返回值为错误
|
// 角度超过范围返回值为错误
|
||||||
if (req.Rot.X >= 0 && req.Rot.X < 90) || (req.Rot.X > 270 && req.Rot.X < 360) {
|
if (req.Rot.X >= 0 && req.Rot.X < 90) || (req.Rot.X > 270 && req.Rot.X < 360) {
|
||||||
sceneAvatarStaminaStepRsp.Retcode = int32(proto.Retcode_RETCODE_RET_SUCC)
|
sceneAvatarStaminaStepRsp.Retcode = int32(proto.Retcode_RET_SUCC)
|
||||||
} else {
|
} else {
|
||||||
sceneAvatarStaminaStepRsp.Retcode = int32(proto.Retcode_RETCODE_RET_FAIL)
|
sceneAvatarStaminaStepRsp.Retcode = int32(proto.Retcode_RET_FAIL)
|
||||||
}
|
}
|
||||||
sceneAvatarStaminaStepRsp.UseClientRot = true
|
sceneAvatarStaminaStepRsp.UseClientRot = true
|
||||||
sceneAvatarStaminaStepRsp.Rot = req.Rot
|
sceneAvatarStaminaStepRsp.Rot = req.Rot
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ func (g *GameManager) ChangeAvatarReq(player *model.Player, payloadMsg pb.Messag
|
|||||||
}
|
}
|
||||||
|
|
||||||
changeAvatarRsp := &proto.ChangeAvatarRsp{
|
changeAvatarRsp := &proto.ChangeAvatarRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SUCC),
|
Retcode: int32(proto.Retcode_RET_SUCC),
|
||||||
CurGuid: targetAvatarGuid,
|
CurGuid: targetAvatarGuid,
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.ChangeAvatarRsp, player.PlayerID, player.ClientSeq, changeAvatarRsp)
|
g.SendMsg(cmd.ChangeAvatarRsp, player.PlayerID, player.ClientSeq, changeAvatarRsp)
|
||||||
@@ -80,7 +80,7 @@ func (g *GameManager) SetUpAvatarTeamReq(player *model.Player, payloadMsg pb.Mes
|
|||||||
teamId := req.TeamId
|
teamId := req.TeamId
|
||||||
if teamId <= 0 || teamId >= 5 {
|
if teamId <= 0 || teamId >= 5 {
|
||||||
setUpAvatarTeamRsp := &proto.SetUpAvatarTeamRsp{
|
setUpAvatarTeamRsp := &proto.SetUpAvatarTeamRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SVR_ERROR),
|
Retcode: int32(proto.Retcode_RET_SVR_ERROR),
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.SetUpAvatarTeamRsp, player.PlayerID, player.ClientSeq, setUpAvatarTeamRsp)
|
g.SendMsg(cmd.SetUpAvatarTeamRsp, player.PlayerID, player.ClientSeq, setUpAvatarTeamRsp)
|
||||||
return
|
return
|
||||||
@@ -90,7 +90,7 @@ func (g *GameManager) SetUpAvatarTeamReq(player *model.Player, payloadMsg pb.Mes
|
|||||||
selfTeam := teamId == uint32(player.TeamConfig.GetActiveTeamId())
|
selfTeam := teamId == uint32(player.TeamConfig.GetActiveTeamId())
|
||||||
if (selfTeam && len(avatarGuidList) == 0) || len(avatarGuidList) > 4 || world.multiplayer {
|
if (selfTeam && len(avatarGuidList) == 0) || len(avatarGuidList) > 4 || world.multiplayer {
|
||||||
setUpAvatarTeamRsp := &proto.SetUpAvatarTeamRsp{
|
setUpAvatarTeamRsp := &proto.SetUpAvatarTeamRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SVR_ERROR),
|
Retcode: int32(proto.Retcode_RET_SVR_ERROR),
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.SetUpAvatarTeamRsp, player.PlayerID, player.ClientSeq, setUpAvatarTeamRsp)
|
g.SendMsg(cmd.SetUpAvatarTeamRsp, player.PlayerID, player.ClientSeq, setUpAvatarTeamRsp)
|
||||||
return
|
return
|
||||||
@@ -110,7 +110,7 @@ func (g *GameManager) SetUpAvatarTeamReq(player *model.Player, payloadMsg pb.Mes
|
|||||||
|
|
||||||
if world.multiplayer {
|
if world.multiplayer {
|
||||||
setUpAvatarTeamRsp := &proto.SetUpAvatarTeamRsp{
|
setUpAvatarTeamRsp := &proto.SetUpAvatarTeamRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SVR_ERROR),
|
Retcode: int32(proto.Retcode_RET_SVR_ERROR),
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.SetUpAvatarTeamRsp, player.PlayerID, player.ClientSeq, setUpAvatarTeamRsp)
|
g.SendMsg(cmd.SetUpAvatarTeamRsp, player.PlayerID, player.ClientSeq, setUpAvatarTeamRsp)
|
||||||
return
|
return
|
||||||
@@ -209,7 +209,7 @@ func (g *GameManager) ChangeMpTeamAvatarReq(player *model.Player, payloadMsg pb.
|
|||||||
world := WORLD_MANAGER.GetWorldByID(player.WorldId)
|
world := WORLD_MANAGER.GetWorldByID(player.WorldId)
|
||||||
if len(avatarGuidList) == 0 || len(avatarGuidList) > 4 || !world.multiplayer {
|
if len(avatarGuidList) == 0 || len(avatarGuidList) > 4 || !world.multiplayer {
|
||||||
changeMpTeamAvatarRsp := &proto.ChangeMpTeamAvatarRsp{
|
changeMpTeamAvatarRsp := &proto.ChangeMpTeamAvatarRsp{
|
||||||
Retcode: int32(proto.Retcode_RETCODE_RET_SVR_ERROR),
|
Retcode: int32(proto.Retcode_RET_SVR_ERROR),
|
||||||
}
|
}
|
||||||
g.SendMsg(cmd.ChangeMpTeamAvatarRsp, player.PlayerID, player.ClientSeq, changeMpTeamAvatarRsp)
|
g.SendMsg(cmd.ChangeMpTeamAvatarRsp, player.PlayerID, player.ClientSeq, changeMpTeamAvatarRsp)
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -443,7 +443,7 @@ const (
|
|||||||
DungeonRestartReq uint16 = 961
|
DungeonRestartReq uint16 = 961
|
||||||
DungeonRestartResultNotify uint16 = 940
|
DungeonRestartResultNotify uint16 = 940
|
||||||
DungeonRestartRsp uint16 = 929
|
DungeonRestartRsp uint16 = 929
|
||||||
DungeonReviseLevelNotify uint16 = 968
|
DungeonReviseLevelNotify uint16 = 933
|
||||||
DungeonSettleNotify uint16 = 999
|
DungeonSettleNotify uint16 = 999
|
||||||
DungeonShowReminderNotify uint16 = 997
|
DungeonShowReminderNotify uint16 = 997
|
||||||
DungeonSlipRevivePointActivateReq uint16 = 958
|
DungeonSlipRevivePointActivateReq uint16 = 958
|
||||||
@@ -621,8 +621,8 @@ const (
|
|||||||
FungusFighterClearTrainingRuntimeDataReq uint16 = 24137
|
FungusFighterClearTrainingRuntimeDataReq uint16 = 24137
|
||||||
FungusFighterClearTrainingRuntimeDataRsp uint16 = 22991
|
FungusFighterClearTrainingRuntimeDataRsp uint16 = 22991
|
||||||
FungusFighterPlotInfoNotify uint16 = 22174
|
FungusFighterPlotInfoNotify uint16 = 22174
|
||||||
FungusFighterRestartTraningDungeonReq uint16 = 23980
|
FungusFighterRestartTrainingDungeonReq uint16 = 23980
|
||||||
FungusFighterRestartTraningDungeonRsp uint16 = 22890
|
FungusFighterRestartTrainingDungeonRsp uint16 = 22890
|
||||||
FungusFighterRuntimeDataNotify uint16 = 24674
|
FungusFighterRuntimeDataNotify uint16 = 24674
|
||||||
FungusFighterTrainingGallerySettleNotify uint16 = 23931
|
FungusFighterTrainingGallerySettleNotify uint16 = 23931
|
||||||
FungusFighterTrainingInfoNotify uint16 = 5595
|
FungusFighterTrainingInfoNotify uint16 = 5595
|
||||||
@@ -632,7 +632,7 @@ const (
|
|||||||
FungusFighterUseBackupFungusRsp uint16 = 23428
|
FungusFighterUseBackupFungusRsp uint16 = 23428
|
||||||
FungusRenameReq uint16 = 22006
|
FungusRenameReq uint16 = 22006
|
||||||
FungusRenameRsp uint16 = 20066
|
FungusRenameRsp uint16 = 20066
|
||||||
FunitureMakeMakeInfoChangeNotify uint16 = 4898
|
FunitureMakeInfoChangeNotify uint16 = 4898
|
||||||
FurnitureCurModuleArrangeCountNotify uint16 = 4498
|
FurnitureCurModuleArrangeCountNotify uint16 = 4498
|
||||||
FurnitureMakeBeHelpedNotify uint16 = 4578
|
FurnitureMakeBeHelpedNotify uint16 = 4578
|
||||||
FurnitureMakeCancelReq uint16 = 4555
|
FurnitureMakeCancelReq uint16 = 4555
|
||||||
@@ -1205,7 +1205,8 @@ const (
|
|||||||
MiracleRingDropResultNotify uint16 = 5231
|
MiracleRingDropResultNotify uint16 = 5231
|
||||||
MiracleRingTakeRewardReq uint16 = 5207
|
MiracleRingTakeRewardReq uint16 = 5207
|
||||||
MiracleRingTakeRewardRsp uint16 = 5202
|
MiracleRingTakeRewardRsp uint16 = 5202
|
||||||
MistTrialDunegonFailNotify uint16 = 8135
|
MistTrialDungeonFailNotify uint16 = 8135
|
||||||
|
MistTrialFloorLevelNotify uint16 = 968
|
||||||
MistTrialGetChallengeMissionReq uint16 = 8893
|
MistTrialGetChallengeMissionReq uint16 = 8893
|
||||||
MistTrialGetChallengeMissionRsp uint16 = 8508
|
MistTrialGetChallengeMissionRsp uint16 = 8508
|
||||||
MistTrialGetDungeonExhibitionDataReq uint16 = 8740
|
MistTrialGetDungeonExhibitionDataReq uint16 = 8740
|
||||||
@@ -1635,8 +1636,8 @@ const (
|
|||||||
SceneTimeNotify uint16 = 245
|
SceneTimeNotify uint16 = 245
|
||||||
SceneTransToPointReq uint16 = 239
|
SceneTransToPointReq uint16 = 239
|
||||||
SceneTransToPointRsp uint16 = 253
|
SceneTransToPointRsp uint16 = 253
|
||||||
SceneWeatherForcastReq uint16 = 3110
|
SceneWeatherForecastReq uint16 = 3110
|
||||||
SceneWeatherForcastRsp uint16 = 3012
|
SceneWeatherForecastRsp uint16 = 3012
|
||||||
SeaLampCoinNotify uint16 = 2114
|
SeaLampCoinNotify uint16 = 2114
|
||||||
SeaLampContributeItemReq uint16 = 2123
|
SeaLampContributeItemReq uint16 = 2123
|
||||||
SeaLampContributeItemRsp uint16 = 2139
|
SeaLampContributeItemRsp uint16 = 2139
|
||||||
|
|||||||
@@ -1,290 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AISnapshotEntityData.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AISnapshotEntityData struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
TickTime float32 `protobuf:"fixed32,5,opt,name=tick_time,json=tickTime,proto3" json:"tick_time,omitempty"`
|
|
||||||
Tactic uint32 `protobuf:"varint,2,opt,name=tactic,proto3" json:"tactic,omitempty"`
|
|
||||||
FinishedSkillCycles []*AISnapshotEntitySkillCycle `protobuf:"bytes,9,rep,name=finished_skill_cycles,json=finishedSkillCycles,proto3" json:"finished_skill_cycles,omitempty"`
|
|
||||||
MovedDistance float32 `protobuf:"fixed32,4,opt,name=moved_distance,json=movedDistance,proto3" json:"moved_distance,omitempty"`
|
|
||||||
AiTargetId uint32 `protobuf:"varint,13,opt,name=ai_target_id,json=aiTargetId,proto3" json:"ai_target_id,omitempty"`
|
|
||||||
ThreatTargetId uint32 `protobuf:"varint,3,opt,name=threat_target_id,json=threatTargetId,proto3" json:"threat_target_id,omitempty"`
|
|
||||||
ThreatListSize uint32 `protobuf:"varint,1,opt,name=threat_list_size,json=threatListSize,proto3" json:"threat_list_size,omitempty"`
|
|
||||||
EntityId uint32 `protobuf:"varint,15,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
|
|
||||||
HittingAvatars map[uint32]uint32 `protobuf:"bytes,7,rep,name=hitting_avatars,json=hittingAvatars,proto3" json:"hitting_avatars,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
|
|
||||||
DistanceToPlayer float32 `protobuf:"fixed32,11,opt,name=distance_to_player,json=distanceToPlayer,proto3" json:"distance_to_player,omitempty"`
|
|
||||||
AttackTargetId uint32 `protobuf:"varint,10,opt,name=attack_target_id,json=attackTargetId,proto3" json:"attack_target_id,omitempty"`
|
|
||||||
RealTime float32 `protobuf:"fixed32,14,opt,name=real_time,json=realTime,proto3" json:"real_time,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) Reset() {
|
|
||||||
*x = AISnapshotEntityData{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AISnapshotEntityData_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AISnapshotEntityData) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AISnapshotEntityData_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AISnapshotEntityData.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AISnapshotEntityData) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AISnapshotEntityData_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetTickTime() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TickTime
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetTactic() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Tactic
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetFinishedSkillCycles() []*AISnapshotEntitySkillCycle {
|
|
||||||
if x != nil {
|
|
||||||
return x.FinishedSkillCycles
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetMovedDistance() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.MovedDistance
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetAiTargetId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AiTargetId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetThreatTargetId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ThreatTargetId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetThreatListSize() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ThreatListSize
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetHittingAvatars() map[uint32]uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.HittingAvatars
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetDistanceToPlayer() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.DistanceToPlayer
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetAttackTargetId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AttackTargetId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntityData) GetRealTime() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RealTime
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AISnapshotEntityData_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AISnapshotEntityData_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1a, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69,
|
|
||||||
0x74, 0x79, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45,
|
|
||||||
0x6e, 0x74, 0x69, 0x74, 0x79, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xee, 0x04, 0x0a, 0x14, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70,
|
|
||||||
0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1b,
|
|
||||||
0x0a, 0x09, 0x74, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
||||||
0x02, 0x52, 0x08, 0x74, 0x69, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74,
|
|
||||||
0x61, 0x63, 0x74, 0x69, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x74, 0x61, 0x63,
|
|
||||||
0x74, 0x69, 0x63, 0x12, 0x55, 0x0a, 0x15, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f,
|
|
||||||
0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03,
|
|
||||||
0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x49, 0x53, 0x6e, 0x61,
|
|
||||||
0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x53, 0x6b, 0x69, 0x6c, 0x6c,
|
|
||||||
0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x13, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x53,
|
|
||||||
0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x6d, 0x6f,
|
|
||||||
0x76, 0x65, 0x64, 0x5f, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01,
|
|
||||||
0x28, 0x02, 0x52, 0x0d, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63,
|
|
||||||
0x65, 0x12, 0x20, 0x0a, 0x0c, 0x61, 0x69, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69,
|
|
||||||
0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x69, 0x54, 0x61, 0x72, 0x67, 0x65,
|
|
||||||
0x74, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x74, 0x68, 0x72, 0x65, 0x61, 0x74, 0x5f, 0x74, 0x61,
|
|
||||||
0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x74,
|
|
||||||
0x68, 0x72, 0x65, 0x61, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x64, 0x12, 0x28, 0x0a,
|
|
||||||
0x10, 0x74, 0x68, 0x72, 0x65, 0x61, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x69, 0x7a,
|
|
||||||
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x74, 0x68, 0x72, 0x65, 0x61, 0x74, 0x4c,
|
|
||||||
0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x69, 0x74,
|
|
||||||
0x79, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69,
|
|
||||||
0x74, 0x79, 0x49, 0x64, 0x12, 0x58, 0x0a, 0x0f, 0x68, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f,
|
|
||||||
0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74,
|
|
||||||
0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x48, 0x69, 0x74, 0x74, 0x69,
|
|
||||||
0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e,
|
|
||||||
0x68, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x73, 0x12, 0x2c,
|
|
||||||
0x0a, 0x12, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x70, 0x6c,
|
|
||||||
0x61, 0x79, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x10, 0x64, 0x69, 0x73, 0x74,
|
|
||||||
0x61, 0x6e, 0x63, 0x65, 0x54, 0x6f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x10,
|
|
||||||
0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x64,
|
|
||||||
0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x54, 0x61,
|
|
||||||
0x72, 0x67, 0x65, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x74,
|
|
||||||
0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x02, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x54,
|
|
||||||
0x69, 0x6d, 0x65, 0x1a, 0x41, 0x0a, 0x13, 0x48, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x76,
|
|
||||||
0x61, 0x74, 0x61, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
|
|
||||||
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
|
|
||||||
0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
||||||
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AISnapshotEntityData_proto_rawDescOnce sync.Once
|
|
||||||
file_AISnapshotEntityData_proto_rawDescData = file_AISnapshotEntityData_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AISnapshotEntityData_proto_rawDescGZIP() []byte {
|
|
||||||
file_AISnapshotEntityData_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AISnapshotEntityData_proto_rawDescData = protoimpl.X.CompressGZIP(file_AISnapshotEntityData_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AISnapshotEntityData_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AISnapshotEntityData_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
||||||
var file_AISnapshotEntityData_proto_goTypes = []interface{}{
|
|
||||||
(*AISnapshotEntityData)(nil), // 0: proto.AISnapshotEntityData
|
|
||||||
nil, // 1: proto.AISnapshotEntityData.HittingAvatarsEntry
|
|
||||||
(*AISnapshotEntitySkillCycle)(nil), // 2: proto.AISnapshotEntitySkillCycle
|
|
||||||
}
|
|
||||||
var file_AISnapshotEntityData_proto_depIdxs = []int32{
|
|
||||||
2, // 0: proto.AISnapshotEntityData.finished_skill_cycles:type_name -> proto.AISnapshotEntitySkillCycle
|
|
||||||
1, // 1: proto.AISnapshotEntityData.hitting_avatars:type_name -> proto.AISnapshotEntityData.HittingAvatarsEntry
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AISnapshotEntityData_proto_init() }
|
|
||||||
func file_AISnapshotEntityData_proto_init() {
|
|
||||||
if File_AISnapshotEntityData_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AISnapshotEntityData_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AISnapshotEntityData); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AISnapshotEntityData_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 2,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AISnapshotEntityData_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AISnapshotEntityData_proto_depIdxs,
|
|
||||||
MessageInfos: file_AISnapshotEntityData_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AISnapshotEntityData_proto = out.File
|
|
||||||
file_AISnapshotEntityData_proto_rawDesc = nil
|
|
||||||
file_AISnapshotEntityData_proto_goTypes = nil
|
|
||||||
file_AISnapshotEntityData_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,199 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AISnapshotEntitySkillCycle.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AISnapshotEntitySkillCycle struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Failed bool `protobuf:"varint,12,opt,name=failed,proto3" json:"failed,omitempty"`
|
|
||||||
Trydoskill bool `protobuf:"varint,8,opt,name=trydoskill,proto3" json:"trydoskill,omitempty"`
|
|
||||||
Success bool `protobuf:"varint,9,opt,name=success,proto3" json:"success,omitempty"`
|
|
||||||
Selected bool `protobuf:"varint,1,opt,name=selected,proto3" json:"selected,omitempty"`
|
|
||||||
SkillId uint32 `protobuf:"varint,2,opt,name=skill_id,json=skillId,proto3" json:"skill_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) Reset() {
|
|
||||||
*x = AISnapshotEntitySkillCycle{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AISnapshotEntitySkillCycle_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AISnapshotEntitySkillCycle) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AISnapshotEntitySkillCycle_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AISnapshotEntitySkillCycle.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AISnapshotEntitySkillCycle) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AISnapshotEntitySkillCycle_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) GetFailed() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Failed
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) GetTrydoskill() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Trydoskill
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) GetSuccess() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Success
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) GetSelected() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Selected
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotEntitySkillCycle) GetSkillId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.SkillId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AISnapshotEntitySkillCycle_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AISnapshotEntitySkillCycle_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x20, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69,
|
|
||||||
0x74, 0x79, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa5, 0x01, 0x0a, 0x1a, 0x41, 0x49,
|
|
||||||
0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x53, 0x6b,
|
|
||||||
0x69, 0x6c, 0x6c, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x61, 0x69, 0x6c,
|
|
||||||
0x65, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
|
|
||||||
0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x72, 0x79, 0x64, 0x6f, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x18, 0x08,
|
|
||||||
0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x74, 0x72, 0x79, 0x64, 0x6f, 0x73, 0x6b, 0x69, 0x6c, 0x6c,
|
|
||||||
0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28,
|
|
||||||
0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
|
|
||||||
0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x73, 0x65,
|
|
||||||
0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x5f,
|
|
||||||
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x49,
|
|
||||||
0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_rawDescOnce sync.Once
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_rawDescData = file_AISnapshotEntitySkillCycle_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AISnapshotEntitySkillCycle_proto_rawDescGZIP() []byte {
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_rawDescData = protoimpl.X.CompressGZIP(file_AISnapshotEntitySkillCycle_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AISnapshotEntitySkillCycle_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AISnapshotEntitySkillCycle_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AISnapshotEntitySkillCycle_proto_goTypes = []interface{}{
|
|
||||||
(*AISnapshotEntitySkillCycle)(nil), // 0: proto.AISnapshotEntitySkillCycle
|
|
||||||
}
|
|
||||||
var file_AISnapshotEntitySkillCycle_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AISnapshotEntitySkillCycle_proto_init() }
|
|
||||||
func file_AISnapshotEntitySkillCycle_proto_init() {
|
|
||||||
if File_AISnapshotEntitySkillCycle_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AISnapshotEntitySkillCycle); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AISnapshotEntitySkillCycle_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AISnapshotEntitySkillCycle_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AISnapshotEntitySkillCycle_proto_depIdxs,
|
|
||||||
MessageInfos: file_AISnapshotEntitySkillCycle_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AISnapshotEntitySkillCycle_proto = out.File
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_rawDesc = nil
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_goTypes = nil
|
|
||||||
file_AISnapshotEntitySkillCycle_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,165 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AISnapshotInfo.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AISnapshotInfo struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AiSnapshots []*AISnapshotEntityData `protobuf:"bytes,13,rep,name=ai_snapshots,json=aiSnapshots,proto3" json:"ai_snapshots,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotInfo) Reset() {
|
|
||||||
*x = AISnapshotInfo{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AISnapshotInfo_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotInfo) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AISnapshotInfo) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AISnapshotInfo) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AISnapshotInfo_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AISnapshotInfo.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AISnapshotInfo) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AISnapshotInfo_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AISnapshotInfo) GetAiSnapshots() []*AISnapshotEntityData {
|
|
||||||
if x != nil {
|
|
||||||
return x.AiSnapshots
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AISnapshotInfo_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AISnapshotInfo_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x14, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x41,
|
|
||||||
0x49, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x44,
|
|
||||||
0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x50, 0x0a, 0x0e, 0x41, 0x49, 0x53,
|
|
||||||
0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3e, 0x0a, 0x0c, 0x61,
|
|
||||||
0x69, 0x5f, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28,
|
|
||||||
0x0b, 0x32, 0x1b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x49, 0x53, 0x6e, 0x61, 0x70,
|
|
||||||
0x73, 0x68, 0x6f, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x0b,
|
|
||||||
0x61, 0x69, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e,
|
|
||||||
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AISnapshotInfo_proto_rawDescOnce sync.Once
|
|
||||||
file_AISnapshotInfo_proto_rawDescData = file_AISnapshotInfo_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AISnapshotInfo_proto_rawDescGZIP() []byte {
|
|
||||||
file_AISnapshotInfo_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AISnapshotInfo_proto_rawDescData = protoimpl.X.CompressGZIP(file_AISnapshotInfo_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AISnapshotInfo_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AISnapshotInfo_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AISnapshotInfo_proto_goTypes = []interface{}{
|
|
||||||
(*AISnapshotInfo)(nil), // 0: proto.AISnapshotInfo
|
|
||||||
(*AISnapshotEntityData)(nil), // 1: proto.AISnapshotEntityData
|
|
||||||
}
|
|
||||||
var file_AISnapshotInfo_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AISnapshotInfo.ai_snapshots:type_name -> proto.AISnapshotEntityData
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AISnapshotInfo_proto_init() }
|
|
||||||
func file_AISnapshotInfo_proto_init() {
|
|
||||||
if File_AISnapshotInfo_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AISnapshotEntityData_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AISnapshotInfo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AISnapshotInfo); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AISnapshotInfo_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AISnapshotInfo_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AISnapshotInfo_proto_depIdxs,
|
|
||||||
MessageInfos: file_AISnapshotInfo_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AISnapshotInfo_proto = out.File
|
|
||||||
file_AISnapshotInfo_proto_rawDesc = nil
|
|
||||||
file_AISnapshotInfo_proto_goTypes = nil
|
|
||||||
file_AISnapshotInfo_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionBlink.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionBlink struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Rot *Vector `protobuf:"bytes,11,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
Pos *Vector `protobuf:"bytes,10,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionBlink) Reset() {
|
|
||||||
*x = AbilityActionBlink{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionBlink_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionBlink) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionBlink) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionBlink) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionBlink_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionBlink.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionBlink) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionBlink_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionBlink) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionBlink) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionBlink_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionBlink_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x18, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42,
|
|
||||||
0x6c, 0x69, 0x6e, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
|
|
||||||
0x56, 0x0a, 0x12, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
||||||
0x42, 0x6c, 0x69, 0x6e, 0x6b, 0x12, 0x1f, 0x0a, 0x03, 0x72, 0x6f, 0x74, 0x18, 0x0b, 0x20, 0x01,
|
|
||||||
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f,
|
|
||||||
0x72, 0x52, 0x03, 0x72, 0x6f, 0x74, 0x12, 0x1f, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x0a, 0x20,
|
|
||||||
0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74,
|
|
||||||
0x6f, 0x72, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionBlink_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionBlink_proto_rawDescData = file_AbilityActionBlink_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionBlink_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionBlink_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionBlink_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionBlink_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionBlink_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionBlink_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionBlink_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionBlink)(nil), // 0: proto.AbilityActionBlink
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionBlink_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionBlink.rot:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityActionBlink.pos:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionBlink_proto_init() }
|
|
||||||
func file_AbilityActionBlink_proto_init() {
|
|
||||||
if File_AbilityActionBlink_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionBlink_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionBlink); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionBlink_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionBlink_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionBlink_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionBlink_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionBlink_proto = out.File
|
|
||||||
file_AbilityActionBlink_proto_rawDesc = nil
|
|
||||||
file_AbilityActionBlink_proto_goTypes = nil
|
|
||||||
file_AbilityActionBlink_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionCreateGadget.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionCreateGadget struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
RoomId uint32 `protobuf:"varint,3,opt,name=room_id,json=roomId,proto3" json:"room_id,omitempty"`
|
|
||||||
Rot *Vector `protobuf:"bytes,8,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
Pos *Vector `protobuf:"bytes,11,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateGadget) Reset() {
|
|
||||||
*x = AbilityActionCreateGadget{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionCreateGadget_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateGadget) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionCreateGadget) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateGadget) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionCreateGadget_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionCreateGadget.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionCreateGadget) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionCreateGadget_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateGadget) GetRoomId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RoomId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateGadget) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateGadget) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionCreateGadget_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionCreateGadget_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43,
|
|
||||||
0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x61, 0x64, 0x67, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x76, 0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x61, 0x64,
|
|
||||||
0x67, 0x65, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x03,
|
|
||||||
0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x03,
|
|
||||||
0x72, 0x6f, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x72, 0x6f, 0x74, 0x12, 0x1f, 0x0a,
|
|
||||||
0x03, 0x70, 0x6f, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x42, 0x0a,
|
|
||||||
0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionCreateGadget_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionCreateGadget_proto_rawDescData = file_AbilityActionCreateGadget_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionCreateGadget_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionCreateGadget_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionCreateGadget_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionCreateGadget_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionCreateGadget_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionCreateGadget_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionCreateGadget_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionCreateGadget)(nil), // 0: proto.AbilityActionCreateGadget
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionCreateGadget_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionCreateGadget.rot:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityActionCreateGadget.pos:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionCreateGadget_proto_init() }
|
|
||||||
func file_AbilityActionCreateGadget_proto_init() {
|
|
||||||
if File_AbilityActionCreateGadget_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionCreateGadget_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionCreateGadget); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionCreateGadget_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionCreateGadget_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionCreateGadget_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionCreateGadget_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionCreateGadget_proto = out.File
|
|
||||||
file_AbilityActionCreateGadget_proto_rawDesc = nil
|
|
||||||
file_AbilityActionCreateGadget_proto_goTypes = nil
|
|
||||||
file_AbilityActionCreateGadget_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,175 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionCreateTile.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionCreateTile struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Rot *Vector `protobuf:"bytes,3,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
Pos *Vector `protobuf:"bytes,8,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateTile) Reset() {
|
|
||||||
*x = AbilityActionCreateTile{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionCreateTile_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateTile) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionCreateTile) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateTile) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionCreateTile_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionCreateTile.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionCreateTile) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionCreateTile_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateTile) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionCreateTile) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionCreateTile_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionCreateTile_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43,
|
|
||||||
0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41,
|
|
||||||
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6c, 0x65, 0x12,
|
|
||||||
0x1f, 0x0a, 0x03, 0x72, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x72, 0x6f, 0x74,
|
|
||||||
0x12, 0x1f, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x70, 0x6f,
|
|
||||||
0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionCreateTile_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionCreateTile_proto_rawDescData = file_AbilityActionCreateTile_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionCreateTile_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionCreateTile_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionCreateTile_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionCreateTile_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionCreateTile_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionCreateTile_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionCreateTile_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionCreateTile)(nil), // 0: proto.AbilityActionCreateTile
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionCreateTile_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionCreateTile.rot:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityActionCreateTile.pos:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionCreateTile_proto_init() }
|
|
||||||
func file_AbilityActionCreateTile_proto_init() {
|
|
||||||
if File_AbilityActionCreateTile_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionCreateTile_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionCreateTile); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionCreateTile_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionCreateTile_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionCreateTile_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionCreateTile_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionCreateTile_proto = out.File
|
|
||||||
file_AbilityActionCreateTile_proto_rawDesc = nil
|
|
||||||
file_AbilityActionCreateTile_proto_goTypes = nil
|
|
||||||
file_AbilityActionCreateTile_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionDeductStamina.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionDeductStamina struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsSwim bool `protobuf:"varint,1,opt,name=is_swim,json=isSwim,proto3" json:"is_swim,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDeductStamina) Reset() {
|
|
||||||
*x = AbilityActionDeductStamina{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionDeductStamina_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDeductStamina) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionDeductStamina) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionDeductStamina) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionDeductStamina_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionDeductStamina.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionDeductStamina) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionDeductStamina_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDeductStamina) GetIsSwim() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsSwim
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionDeductStamina_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionDeductStamina_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x20, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44,
|
|
||||||
0x65, 0x64, 0x75, 0x63, 0x74, 0x53, 0x74, 0x61, 0x6d, 0x69, 0x6e, 0x61, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x35, 0x0a, 0x1a, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x64, 0x75, 0x63, 0x74,
|
|
||||||
0x53, 0x74, 0x61, 0x6d, 0x69, 0x6e, 0x61, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x77,
|
|
||||||
0x69, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x53, 0x77, 0x69, 0x6d,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionDeductStamina_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionDeductStamina_proto_rawDescData = file_AbilityActionDeductStamina_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionDeductStamina_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionDeductStamina_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionDeductStamina_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionDeductStamina_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionDeductStamina_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionDeductStamina_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionDeductStamina_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionDeductStamina)(nil), // 0: proto.AbilityActionDeductStamina
|
|
||||||
}
|
|
||||||
var file_AbilityActionDeductStamina_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionDeductStamina_proto_init() }
|
|
||||||
func file_AbilityActionDeductStamina_proto_init() {
|
|
||||||
if File_AbilityActionDeductStamina_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionDeductStamina_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionDeductStamina); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionDeductStamina_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionDeductStamina_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionDeductStamina_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionDeductStamina_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionDeductStamina_proto = out.File
|
|
||||||
file_AbilityActionDeductStamina_proto_rawDesc = nil
|
|
||||||
file_AbilityActionDeductStamina_proto_goTypes = nil
|
|
||||||
file_AbilityActionDeductStamina_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,175 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionDestroyTile.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionDestroyTile struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Rot *Vector `protobuf:"bytes,3,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
Pos *Vector `protobuf:"bytes,1,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDestroyTile) Reset() {
|
|
||||||
*x = AbilityActionDestroyTile{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionDestroyTile_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDestroyTile) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionDestroyTile) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionDestroyTile) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionDestroyTile_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionDestroyTile.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionDestroyTile) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionDestroyTile_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDestroyTile) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionDestroyTile) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionDestroyTile_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionDestroyTile_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44,
|
|
||||||
0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x54, 0x69, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5c, 0x0a, 0x18, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x54, 0x69, 0x6c,
|
|
||||||
0x65, 0x12, 0x1f, 0x0a, 0x03, 0x72, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x72,
|
|
||||||
0x6f, 0x74, 0x12, 0x1f, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
||||||
0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03,
|
|
||||||
0x70, 0x6f, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
||||||
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionDestroyTile_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionDestroyTile_proto_rawDescData = file_AbilityActionDestroyTile_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionDestroyTile_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionDestroyTile_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionDestroyTile_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionDestroyTile_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionDestroyTile_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionDestroyTile_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionDestroyTile_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionDestroyTile)(nil), // 0: proto.AbilityActionDestroyTile
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionDestroyTile_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionDestroyTile.rot:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityActionDestroyTile.pos:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionDestroyTile_proto_init() }
|
|
||||||
func file_AbilityActionDestroyTile_proto_init() {
|
|
||||||
if File_AbilityActionDestroyTile_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionDestroyTile_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionDestroyTile); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionDestroyTile_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionDestroyTile_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionDestroyTile_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionDestroyTile_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionDestroyTile_proto = out.File
|
|
||||||
file_AbilityActionDestroyTile_proto_rawDesc = nil
|
|
||||||
file_AbilityActionDestroyTile_proto_goTypes = nil
|
|
||||||
file_AbilityActionDestroyTile_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,164 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionFireAfterImage.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionFireAfterImage struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Dir *Vector `protobuf:"bytes,12,opt,name=dir,proto3" json:"dir,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionFireAfterImage) Reset() {
|
|
||||||
*x = AbilityActionFireAfterImage{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionFireAfterImage_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionFireAfterImage) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionFireAfterImage) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionFireAfterImage) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionFireAfterImage_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionFireAfterImage.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionFireAfterImage) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionFireAfterImage_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionFireAfterImage) GetDir() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Dir
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionFireAfterImage_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionFireAfterImage_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x46,
|
|
||||||
0x69, 0x72, 0x65, 0x41, 0x66, 0x74, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74,
|
|
||||||
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x3e, 0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x72, 0x65, 0x41, 0x66, 0x74,
|
|
||||||
0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x0c,
|
|
||||||
0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63,
|
|
||||||
0x74, 0x6f, 0x72, 0x52, 0x03, 0x64, 0x69, 0x72, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionFireAfterImage_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionFireAfterImage_proto_rawDescData = file_AbilityActionFireAfterImage_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionFireAfterImage_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionFireAfterImage_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionFireAfterImage_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionFireAfterImage_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionFireAfterImage_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionFireAfterImage_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionFireAfterImage_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionFireAfterImage)(nil), // 0: proto.AbilityActionFireAfterImage
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionFireAfterImage_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionFireAfterImage.dir:type_name -> proto.Vector
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionFireAfterImage_proto_init() }
|
|
||||||
func file_AbilityActionFireAfterImage_proto_init() {
|
|
||||||
if File_AbilityActionFireAfterImage_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionFireAfterImage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionFireAfterImage); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionFireAfterImage_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionFireAfterImage_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionFireAfterImage_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionFireAfterImage_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionFireAfterImage_proto = out.File
|
|
||||||
file_AbilityActionFireAfterImage_proto_rawDesc = nil
|
|
||||||
file_AbilityActionFireAfterImage_proto_goTypes = nil
|
|
||||||
file_AbilityActionFireAfterImage_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionGenerateElemBall.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionGenerateElemBall struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
RoomId uint32 `protobuf:"varint,2,opt,name=room_id,json=roomId,proto3" json:"room_id,omitempty"`
|
|
||||||
Pos *Vector `protobuf:"bytes,7,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
Rot *Vector `protobuf:"bytes,13,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionGenerateElemBall) Reset() {
|
|
||||||
*x = AbilityActionGenerateElemBall{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionGenerateElemBall_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionGenerateElemBall) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionGenerateElemBall) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionGenerateElemBall) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionGenerateElemBall_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionGenerateElemBall.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionGenerateElemBall) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionGenerateElemBall_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionGenerateElemBall) GetRoomId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RoomId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionGenerateElemBall) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionGenerateElemBall) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionGenerateElemBall_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionGenerateElemBall_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x23, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x47,
|
|
||||||
0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x42, 0x61, 0x6c, 0x6c, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65,
|
|
||||||
0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7a, 0x0a, 0x1d, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x65, 0x6e, 0x65, 0x72,
|
|
||||||
0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x42, 0x61, 0x6c, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x72,
|
|
||||||
0x6f, 0x6f, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x6f,
|
|
||||||
0x6f, 0x6d, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28,
|
|
||||||
0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72,
|
|
||||||
0x52, 0x03, 0x70, 0x6f, 0x73, 0x12, 0x1f, 0x0a, 0x03, 0x72, 0x6f, 0x74, 0x18, 0x0d, 0x20, 0x01,
|
|
||||||
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f,
|
|
||||||
0x72, 0x52, 0x03, 0x72, 0x6f, 0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionGenerateElemBall_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionGenerateElemBall_proto_rawDescData = file_AbilityActionGenerateElemBall_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionGenerateElemBall_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionGenerateElemBall_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionGenerateElemBall_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionGenerateElemBall_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionGenerateElemBall_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionGenerateElemBall_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionGenerateElemBall_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionGenerateElemBall)(nil), // 0: proto.AbilityActionGenerateElemBall
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionGenerateElemBall_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionGenerateElemBall.pos:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityActionGenerateElemBall.rot:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionGenerateElemBall_proto_init() }
|
|
||||||
func file_AbilityActionGenerateElemBall_proto_init() {
|
|
||||||
if File_AbilityActionGenerateElemBall_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionGenerateElemBall_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionGenerateElemBall); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionGenerateElemBall_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionGenerateElemBall_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionGenerateElemBall_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionGenerateElemBall_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionGenerateElemBall_proto = out.File
|
|
||||||
file_AbilityActionGenerateElemBall_proto_rawDesc = nil
|
|
||||||
file_AbilityActionGenerateElemBall_proto_goTypes = nil
|
|
||||||
file_AbilityActionGenerateElemBall_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionHitEffect.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionHitEffect struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
TriggerId uint32 `protobuf:"varint,3,opt,name=trigger_id,json=triggerId,proto3" json:"trigger_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionHitEffect) Reset() {
|
|
||||||
*x = AbilityActionHitEffect{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionHitEffect_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionHitEffect) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionHitEffect) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionHitEffect) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionHitEffect_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionHitEffect.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionHitEffect) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionHitEffect_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionHitEffect) GetTriggerId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TriggerId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionHitEffect_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionHitEffect_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48,
|
|
||||||
0x69, 0x74, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x37, 0x0a, 0x16, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x69, 0x74, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x12,
|
|
||||||
0x1d, 0x0a, 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x09, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x49, 0x64, 0x42, 0x0a,
|
|
||||||
0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionHitEffect_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionHitEffect_proto_rawDescData = file_AbilityActionHitEffect_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionHitEffect_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionHitEffect_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionHitEffect_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionHitEffect_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionHitEffect_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionHitEffect_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionHitEffect_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionHitEffect)(nil), // 0: proto.AbilityActionHitEffect
|
|
||||||
}
|
|
||||||
var file_AbilityActionHitEffect_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionHitEffect_proto_init() }
|
|
||||||
func file_AbilityActionHitEffect_proto_init() {
|
|
||||||
if File_AbilityActionHitEffect_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionHitEffect_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionHitEffect); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionHitEffect_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionHitEffect_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionHitEffect_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionHitEffect_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionHitEffect_proto = out.File
|
|
||||||
file_AbilityActionHitEffect_proto_rawDesc = nil
|
|
||||||
file_AbilityActionHitEffect_proto_goTypes = nil
|
|
||||||
file_AbilityActionHitEffect_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionServerMonsterLog.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionServerMonsterLog struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ParamList []int32 `protobuf:"varint,2,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionServerMonsterLog) Reset() {
|
|
||||||
*x = AbilityActionServerMonsterLog{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionServerMonsterLog_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionServerMonsterLog) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionServerMonsterLog) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionServerMonsterLog) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionServerMonsterLog_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionServerMonsterLog.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionServerMonsterLog) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionServerMonsterLog_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionServerMonsterLog) GetParamList() []int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ParamList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionServerMonsterLog_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionServerMonsterLog_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x23, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53,
|
|
||||||
0x65, 0x72, 0x76, 0x65, 0x72, 0x4d, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x3e, 0x0a, 0x1d,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72,
|
|
||||||
0x76, 0x65, 0x72, 0x4d, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x12, 0x1d, 0x0a,
|
|
||||||
0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28,
|
|
||||||
0x05, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionServerMonsterLog_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionServerMonsterLog_proto_rawDescData = file_AbilityActionServerMonsterLog_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionServerMonsterLog_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionServerMonsterLog_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionServerMonsterLog_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionServerMonsterLog_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionServerMonsterLog_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionServerMonsterLog_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionServerMonsterLog_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionServerMonsterLog)(nil), // 0: proto.AbilityActionServerMonsterLog
|
|
||||||
}
|
|
||||||
var file_AbilityActionServerMonsterLog_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionServerMonsterLog_proto_init() }
|
|
||||||
func file_AbilityActionServerMonsterLog_proto_init() {
|
|
||||||
if File_AbilityActionServerMonsterLog_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionServerMonsterLog_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionServerMonsterLog); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionServerMonsterLog_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionServerMonsterLog_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionServerMonsterLog_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionServerMonsterLog_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionServerMonsterLog_proto = out.File
|
|
||||||
file_AbilityActionServerMonsterLog_proto_rawDesc = nil
|
|
||||||
file_AbilityActionServerMonsterLog_proto_goTypes = nil
|
|
||||||
file_AbilityActionServerMonsterLog_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
25
protocol/proto/AbilityActionSetBulletTrackTarget.proto
Normal file
25
protocol/proto/AbilityActionSetBulletTrackTarget.proto
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./;proto";
|
||||||
|
|
||||||
|
message AbilityActionSetBulletTrackTarget {
|
||||||
|
uint32 chased_entity_id = 1;
|
||||||
|
uint32 lock_point_index = 2;
|
||||||
|
}
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionSetCrashDamage.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionSetCrashDamage struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
HitPos *Vector `protobuf:"bytes,2,opt,name=hit_pos,json=hitPos,proto3" json:"hit_pos,omitempty"`
|
|
||||||
Damage float32 `protobuf:"fixed32,15,opt,name=damage,proto3" json:"damage,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetCrashDamage) Reset() {
|
|
||||||
*x = AbilityActionSetCrashDamage{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionSetCrashDamage_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetCrashDamage) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionSetCrashDamage) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetCrashDamage) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionSetCrashDamage_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionSetCrashDamage.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionSetCrashDamage) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionSetCrashDamage_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetCrashDamage) GetHitPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.HitPos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetCrashDamage) GetDamage() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Damage
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionSetCrashDamage_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionSetCrashDamage_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53,
|
|
||||||
0x65, 0x74, 0x43, 0x72, 0x61, 0x73, 0x68, 0x44, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74,
|
|
||||||
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5d, 0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x43, 0x72, 0x61, 0x73,
|
|
||||||
0x68, 0x44, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x26, 0x0a, 0x07, 0x68, 0x69, 0x74, 0x5f, 0x70,
|
|
||||||
0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x06, 0x68, 0x69, 0x74, 0x50, 0x6f, 0x73, 0x12,
|
|
||||||
0x16, 0x0a, 0x06, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x02, 0x52,
|
|
||||||
0x06, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionSetCrashDamage_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionSetCrashDamage_proto_rawDescData = file_AbilityActionSetCrashDamage_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionSetCrashDamage_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionSetCrashDamage_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionSetCrashDamage_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionSetCrashDamage_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionSetCrashDamage_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionSetCrashDamage_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionSetCrashDamage_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionSetCrashDamage)(nil), // 0: proto.AbilityActionSetCrashDamage
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionSetCrashDamage_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionSetCrashDamage.hit_pos:type_name -> proto.Vector
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionSetCrashDamage_proto_init() }
|
|
||||||
func file_AbilityActionSetCrashDamage_proto_init() {
|
|
||||||
if File_AbilityActionSetCrashDamage_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionSetCrashDamage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionSetCrashDamage); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionSetCrashDamage_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionSetCrashDamage_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionSetCrashDamage_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionSetCrashDamage_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionSetCrashDamage_proto = out.File
|
|
||||||
file_AbilityActionSetCrashDamage_proto_rawDesc = nil
|
|
||||||
file_AbilityActionSetCrashDamage_proto_goTypes = nil
|
|
||||||
file_AbilityActionSetCrashDamage_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionSetRandomOverrideMapValue.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionSetRandomOverrideMapValue struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
RandomValue float32 `protobuf:"fixed32,1,opt,name=random_value,json=randomValue,proto3" json:"random_value,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetRandomOverrideMapValue) Reset() {
|
|
||||||
*x = AbilityActionSetRandomOverrideMapValue{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionSetRandomOverrideMapValue_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetRandomOverrideMapValue) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionSetRandomOverrideMapValue) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetRandomOverrideMapValue) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionSetRandomOverrideMapValue_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionSetRandomOverrideMapValue.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionSetRandomOverrideMapValue) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionSetRandomOverrideMapValue_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSetRandomOverrideMapValue) GetRandomValue() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RandomValue
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionSetRandomOverrideMapValue_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionSetRandomOverrideMapValue_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x2c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53,
|
|
||||||
0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65,
|
|
||||||
0x4d, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4b, 0x0a, 0x26, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4f,
|
|
||||||
0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12,
|
|
||||||
0x21, 0x0a, 0x0c, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
|
|
||||||
0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x56, 0x61, 0x6c,
|
|
||||||
0x75, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_rawDescData = file_AbilityActionSetRandomOverrideMapValue_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionSetRandomOverrideMapValue_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionSetRandomOverrideMapValue_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionSetRandomOverrideMapValue_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionSetRandomOverrideMapValue_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionSetRandomOverrideMapValue_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionSetRandomOverrideMapValue)(nil), // 0: proto.AbilityActionSetRandomOverrideMapValue
|
|
||||||
}
|
|
||||||
var file_AbilityActionSetRandomOverrideMapValue_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionSetRandomOverrideMapValue_proto_init() }
|
|
||||||
func file_AbilityActionSetRandomOverrideMapValue_proto_init() {
|
|
||||||
if File_AbilityActionSetRandomOverrideMapValue_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionSetRandomOverrideMapValue); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionSetRandomOverrideMapValue_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionSetRandomOverrideMapValue_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionSetRandomOverrideMapValue_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionSetRandomOverrideMapValue_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionSetRandomOverrideMapValue_proto = out.File
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_rawDesc = nil
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_goTypes = nil
|
|
||||||
file_AbilityActionSetRandomOverrideMapValue_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionSummon.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionSummon struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Pos *Vector `protobuf:"bytes,10,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
Rot *Vector `protobuf:"bytes,1,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSummon) Reset() {
|
|
||||||
*x = AbilityActionSummon{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionSummon_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSummon) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionSummon) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionSummon) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionSummon_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionSummon.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionSummon) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionSummon_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSummon) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionSummon) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionSummon_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionSummon_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53,
|
|
||||||
0x75, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x57, 0x0a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f,
|
|
||||||
0x6e, 0x53, 0x75, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x0a,
|
|
||||||
0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63,
|
|
||||||
0x74, 0x6f, 0x72, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x12, 0x1f, 0x0a, 0x03, 0x72, 0x6f, 0x74, 0x18,
|
|
||||||
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65,
|
|
||||||
0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x72, 0x6f, 0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionSummon_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionSummon_proto_rawDescData = file_AbilityActionSummon_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionSummon_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionSummon_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionSummon_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionSummon_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionSummon_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionSummon_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionSummon_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionSummon)(nil), // 0: proto.AbilityActionSummon
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityActionSummon_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityActionSummon.pos:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityActionSummon.rot:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionSummon_proto_init() }
|
|
||||||
func file_AbilityActionSummon_proto_init() {
|
|
||||||
if File_AbilityActionSummon_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionSummon_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionSummon); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionSummon_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionSummon_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionSummon_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionSummon_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionSummon_proto = out.File
|
|
||||||
file_AbilityActionSummon_proto_rawDesc = nil
|
|
||||||
file_AbilityActionSummon_proto_goTypes = nil
|
|
||||||
file_AbilityActionSummon_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityActionTriggerAbility.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityActionTriggerAbility struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
OtherId uint32 `protobuf:"varint,14,opt,name=other_id,json=otherId,proto3" json:"other_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionTriggerAbility) Reset() {
|
|
||||||
*x = AbilityActionTriggerAbility{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityActionTriggerAbility_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionTriggerAbility) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityActionTriggerAbility) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityActionTriggerAbility) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityActionTriggerAbility_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityActionTriggerAbility.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityActionTriggerAbility) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityActionTriggerAbility_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityActionTriggerAbility) GetOtherId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.OtherId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityActionTriggerAbility_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityActionTriggerAbility_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
|
|
||||||
0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x38, 0x0a, 0x1b, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x69, 0x67, 0x67,
|
|
||||||
0x65, 0x72, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x74, 0x68,
|
|
||||||
0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x6f, 0x74, 0x68,
|
|
||||||
0x65, 0x72, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityActionTriggerAbility_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityActionTriggerAbility_proto_rawDescData = file_AbilityActionTriggerAbility_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityActionTriggerAbility_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityActionTriggerAbility_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityActionTriggerAbility_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityActionTriggerAbility_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityActionTriggerAbility_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityActionTriggerAbility_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityActionTriggerAbility_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityActionTriggerAbility)(nil), // 0: proto.AbilityActionTriggerAbility
|
|
||||||
}
|
|
||||||
var file_AbilityActionTriggerAbility_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityActionTriggerAbility_proto_init() }
|
|
||||||
func file_AbilityActionTriggerAbility_proto_init() {
|
|
||||||
if File_AbilityActionTriggerAbility_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityActionTriggerAbility_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityActionTriggerAbility); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityActionTriggerAbility_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityActionTriggerAbility_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityActionTriggerAbility_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityActionTriggerAbility_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityActionTriggerAbility_proto = out.File
|
|
||||||
file_AbilityActionTriggerAbility_proto_rawDesc = nil
|
|
||||||
file_AbilityActionTriggerAbility_proto_goTypes = nil
|
|
||||||
file_AbilityActionTriggerAbility_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,207 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityAppliedAbility.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityAppliedAbility struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AbilityName *AbilityString `protobuf:"bytes,1,opt,name=ability_name,json=abilityName,proto3" json:"ability_name,omitempty"`
|
|
||||||
AbilityOverride *AbilityString `protobuf:"bytes,2,opt,name=ability_override,json=abilityOverride,proto3" json:"ability_override,omitempty"`
|
|
||||||
OverrideMap []*AbilityScalarValueEntry `protobuf:"bytes,3,rep,name=override_map,json=overrideMap,proto3" json:"override_map,omitempty"`
|
|
||||||
InstancedAbilityId uint32 `protobuf:"varint,4,opt,name=instanced_ability_id,json=instancedAbilityId,proto3" json:"instanced_ability_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) Reset() {
|
|
||||||
*x = AbilityAppliedAbility{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityAppliedAbility_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityAppliedAbility) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityAppliedAbility_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityAppliedAbility.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityAppliedAbility) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityAppliedAbility_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) GetAbilityName() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityName
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) GetAbilityOverride() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityOverride
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) GetOverrideMap() []*AbilityScalarValueEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.OverrideMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedAbility) GetInstancedAbilityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedAbilityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityAppliedAbility_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityAppliedAbility_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61,
|
|
||||||
0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69,
|
|
||||||
0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x86, 0x02, 0x0a, 0x15, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x12, 0x37, 0x0a, 0x0c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6e, 0x61,
|
|
||||||
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0b,
|
|
||||||
0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x10, 0x61,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18,
|
|
||||||
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0f, 0x61, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x41, 0x0a, 0x0c,
|
|
||||||
0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x03, 0x20, 0x03,
|
|
||||||
0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x74,
|
|
||||||
0x72, 0x79, 0x52, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x61, 0x70, 0x12,
|
|
||||||
0x30, 0x0a, 0x14, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x61, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69,
|
|
||||||
0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49,
|
|
||||||
0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityAppliedAbility_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityAppliedAbility_proto_rawDescData = file_AbilityAppliedAbility_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityAppliedAbility_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityAppliedAbility_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityAppliedAbility_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityAppliedAbility_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityAppliedAbility_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityAppliedAbility_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityAppliedAbility_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityAppliedAbility)(nil), // 0: proto.AbilityAppliedAbility
|
|
||||||
(*AbilityString)(nil), // 1: proto.AbilityString
|
|
||||||
(*AbilityScalarValueEntry)(nil), // 2: proto.AbilityScalarValueEntry
|
|
||||||
}
|
|
||||||
var file_AbilityAppliedAbility_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityAppliedAbility.ability_name:type_name -> proto.AbilityString
|
|
||||||
1, // 1: proto.AbilityAppliedAbility.ability_override:type_name -> proto.AbilityString
|
|
||||||
2, // 2: proto.AbilityAppliedAbility.override_map:type_name -> proto.AbilityScalarValueEntry
|
|
||||||
3, // [3:3] is the sub-list for method output_type
|
|
||||||
3, // [3:3] is the sub-list for method input_type
|
|
||||||
3, // [3:3] is the sub-list for extension type_name
|
|
||||||
3, // [3:3] is the sub-list for extension extendee
|
|
||||||
0, // [0:3] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityAppliedAbility_proto_init() }
|
|
||||||
func file_AbilityAppliedAbility_proto_init() {
|
|
||||||
if File_AbilityAppliedAbility_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityScalarValueEntry_proto_init()
|
|
||||||
file_AbilityString_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityAppliedAbility_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityAppliedAbility); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityAppliedAbility_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityAppliedAbility_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityAppliedAbility_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityAppliedAbility_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityAppliedAbility_proto = out.File
|
|
||||||
file_AbilityAppliedAbility_proto_rawDesc = nil
|
|
||||||
file_AbilityAppliedAbility_proto_goTypes = nil
|
|
||||||
file_AbilityAppliedAbility_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,315 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityAppliedModifier.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityAppliedModifier struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ModifierLocalId int32 `protobuf:"varint,1,opt,name=modifier_local_id,json=modifierLocalId,proto3" json:"modifier_local_id,omitempty"`
|
|
||||||
ParentAbilityEntityId uint32 `protobuf:"varint,2,opt,name=parent_ability_entity_id,json=parentAbilityEntityId,proto3" json:"parent_ability_entity_id,omitempty"`
|
|
||||||
ParentAbilityName *AbilityString `protobuf:"bytes,3,opt,name=parent_ability_name,json=parentAbilityName,proto3" json:"parent_ability_name,omitempty"`
|
|
||||||
ParentAbilityOverride *AbilityString `protobuf:"bytes,4,opt,name=parent_ability_override,json=parentAbilityOverride,proto3" json:"parent_ability_override,omitempty"`
|
|
||||||
InstancedAbilityId uint32 `protobuf:"varint,5,opt,name=instanced_ability_id,json=instancedAbilityId,proto3" json:"instanced_ability_id,omitempty"`
|
|
||||||
InstancedModifierId uint32 `protobuf:"varint,6,opt,name=instanced_modifier_id,json=instancedModifierId,proto3" json:"instanced_modifier_id,omitempty"`
|
|
||||||
ExistDuration float32 `protobuf:"fixed32,7,opt,name=exist_duration,json=existDuration,proto3" json:"exist_duration,omitempty"`
|
|
||||||
AttachedInstancedModifier *AbilityAttachedModifier `protobuf:"bytes,8,opt,name=attached_instanced_modifier,json=attachedInstancedModifier,proto3" json:"attached_instanced_modifier,omitempty"`
|
|
||||||
ApplyEntityId uint32 `protobuf:"varint,9,opt,name=apply_entity_id,json=applyEntityId,proto3" json:"apply_entity_id,omitempty"`
|
|
||||||
IsAttachedParentAbility bool `protobuf:"varint,10,opt,name=is_attached_parent_ability,json=isAttachedParentAbility,proto3" json:"is_attached_parent_ability,omitempty"`
|
|
||||||
ModifierDurability *ModifierDurability `protobuf:"bytes,11,opt,name=modifier_durability,json=modifierDurability,proto3" json:"modifier_durability,omitempty"`
|
|
||||||
SbuffUid uint32 `protobuf:"varint,12,opt,name=sbuff_uid,json=sbuffUid,proto3" json:"sbuff_uid,omitempty"`
|
|
||||||
IsServerbuffModifier bool `protobuf:"varint,13,opt,name=is_serverbuff_modifier,json=isServerbuffModifier,proto3" json:"is_serverbuff_modifier,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) Reset() {
|
|
||||||
*x = AbilityAppliedModifier{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityAppliedModifier_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityAppliedModifier) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityAppliedModifier_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityAppliedModifier.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityAppliedModifier) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityAppliedModifier_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetModifierLocalId() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ModifierLocalId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetParentAbilityEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ParentAbilityEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetParentAbilityName() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.ParentAbilityName
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetParentAbilityOverride() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.ParentAbilityOverride
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetInstancedAbilityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedAbilityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetInstancedModifierId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedModifierId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetExistDuration() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ExistDuration
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetAttachedInstancedModifier() *AbilityAttachedModifier {
|
|
||||||
if x != nil {
|
|
||||||
return x.AttachedInstancedModifier
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetApplyEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ApplyEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetIsAttachedParentAbility() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsAttachedParentAbility
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetModifierDurability() *ModifierDurability {
|
|
||||||
if x != nil {
|
|
||||||
return x.ModifierDurability
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetSbuffUid() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.SbuffUid
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAppliedModifier) GetIsServerbuffModifier() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsServerbuffModifier
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityAppliedModifier_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityAppliedModifier_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64,
|
|
||||||
0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x74,
|
|
||||||
0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72,
|
|
||||||
0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x4d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x22, 0x82, 0x06, 0x0a, 0x16, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41,
|
|
||||||
0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x2a,
|
|
||||||
0x0a, 0x11, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
|
|
||||||
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x6d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x18, 0x70, 0x61,
|
|
||||||
0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65, 0x6e, 0x74,
|
|
||||||
0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x15, 0x70, 0x61,
|
|
||||||
0x72, 0x65, 0x6e, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6e, 0x74, 0x69, 0x74,
|
|
||||||
0x79, 0x49, 0x64, 0x12, 0x44, 0x0a, 0x13, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
|
|
||||||
0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x11, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x17, 0x70, 0x61, 0x72,
|
|
||||||
0x65, 0x6e, 0x74, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6f, 0x76, 0x65, 0x72,
|
|
||||||
0x72, 0x69, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
|
|
||||||
0x52, 0x15, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4f,
|
|
||||||
0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
||||||
0x6e, 0x63, 0x65, 0x64, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18,
|
|
||||||
0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x15, 0x69, 0x6e, 0x73,
|
|
||||||
0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f,
|
|
||||||
0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x13, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e,
|
|
||||||
0x63, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a,
|
|
||||||
0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
|
|
||||||
0x07, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x44, 0x75, 0x72, 0x61,
|
|
||||||
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5e, 0x0a, 0x1b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64,
|
|
||||||
0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65,
|
|
||||||
0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x19, 0x61, 0x74, 0x74, 0x61, 0x63,
|
|
||||||
0x68, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69,
|
|
||||||
0x66, 0x69, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x65, 0x6e,
|
|
||||||
0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x61,
|
|
||||||
0x70, 0x70, 0x6c, 0x79, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x1a,
|
|
||||||
0x69, 0x73, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x65,
|
|
||||||
0x6e, 0x74, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08,
|
|
||||||
0x52, 0x17, 0x69, 0x73, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x50, 0x61, 0x72, 0x65,
|
|
||||||
0x6e, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x13, 0x6d, 0x6f, 0x64,
|
|
||||||
0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d,
|
|
||||||
0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x52, 0x12, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x44, 0x75, 0x72, 0x61, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x62, 0x75, 0x66, 0x66, 0x5f, 0x75,
|
|
||||||
0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x62, 0x75, 0x66, 0x66, 0x55,
|
|
||||||
0x69, 0x64, 0x12, 0x34, 0x0a, 0x16, 0x69, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62,
|
|
||||||
0x75, 0x66, 0x66, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x0d, 0x20, 0x01,
|
|
||||||
0x28, 0x08, 0x52, 0x14, 0x69, 0x73, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x75, 0x66, 0x66,
|
|
||||||
0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityAppliedModifier_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityAppliedModifier_proto_rawDescData = file_AbilityAppliedModifier_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityAppliedModifier_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityAppliedModifier_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityAppliedModifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityAppliedModifier_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityAppliedModifier_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityAppliedModifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityAppliedModifier_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityAppliedModifier)(nil), // 0: proto.AbilityAppliedModifier
|
|
||||||
(*AbilityString)(nil), // 1: proto.AbilityString
|
|
||||||
(*AbilityAttachedModifier)(nil), // 2: proto.AbilityAttachedModifier
|
|
||||||
(*ModifierDurability)(nil), // 3: proto.ModifierDurability
|
|
||||||
}
|
|
||||||
var file_AbilityAppliedModifier_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityAppliedModifier.parent_ability_name:type_name -> proto.AbilityString
|
|
||||||
1, // 1: proto.AbilityAppliedModifier.parent_ability_override:type_name -> proto.AbilityString
|
|
||||||
2, // 2: proto.AbilityAppliedModifier.attached_instanced_modifier:type_name -> proto.AbilityAttachedModifier
|
|
||||||
3, // 3: proto.AbilityAppliedModifier.modifier_durability:type_name -> proto.ModifierDurability
|
|
||||||
4, // [4:4] is the sub-list for method output_type
|
|
||||||
4, // [4:4] is the sub-list for method input_type
|
|
||||||
4, // [4:4] is the sub-list for extension type_name
|
|
||||||
4, // [4:4] is the sub-list for extension extendee
|
|
||||||
0, // [0:4] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityAppliedModifier_proto_init() }
|
|
||||||
func file_AbilityAppliedModifier_proto_init() {
|
|
||||||
if File_AbilityAppliedModifier_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityAttachedModifier_proto_init()
|
|
||||||
file_AbilityString_proto_init()
|
|
||||||
file_ModifierDurability_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityAppliedModifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityAppliedModifier); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityAppliedModifier_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityAppliedModifier_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityAppliedModifier_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityAppliedModifier_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityAppliedModifier_proto = out.File
|
|
||||||
file_AbilityAppliedModifier_proto_rawDesc = nil
|
|
||||||
file_AbilityAppliedModifier_proto_goTypes = nil
|
|
||||||
file_AbilityAppliedModifier_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,161 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityApplyLevelModifier.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityApplyLevelModifier struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ApplyEntityId uint32 `protobuf:"varint,6,opt,name=apply_entity_id,json=applyEntityId,proto3" json:"apply_entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityApplyLevelModifier) Reset() {
|
|
||||||
*x = AbilityApplyLevelModifier{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityApplyLevelModifier_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityApplyLevelModifier) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityApplyLevelModifier) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityApplyLevelModifier) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityApplyLevelModifier_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityApplyLevelModifier.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityApplyLevelModifier) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityApplyLevelModifier_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityApplyLevelModifier) GetApplyEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ApplyEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityApplyLevelModifier_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityApplyLevelModifier_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x4c, 0x65,
|
|
||||||
0x76, 0x65, 0x6c, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x43, 0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x6f, 0x64,
|
|
||||||
0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x65,
|
|
||||||
0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d,
|
|
||||||
0x61, 0x70, 0x70, 0x6c, 0x79, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityApplyLevelModifier_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityApplyLevelModifier_proto_rawDescData = file_AbilityApplyLevelModifier_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityApplyLevelModifier_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityApplyLevelModifier_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityApplyLevelModifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityApplyLevelModifier_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityApplyLevelModifier_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityApplyLevelModifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityApplyLevelModifier_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityApplyLevelModifier)(nil), // 0: proto.AbilityApplyLevelModifier
|
|
||||||
}
|
|
||||||
var file_AbilityApplyLevelModifier_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityApplyLevelModifier_proto_init() }
|
|
||||||
func file_AbilityApplyLevelModifier_proto_init() {
|
|
||||||
if File_AbilityApplyLevelModifier_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityApplyLevelModifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityApplyLevelModifier); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityApplyLevelModifier_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityApplyLevelModifier_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityApplyLevelModifier_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityApplyLevelModifier_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityApplyLevelModifier_proto = out.File
|
|
||||||
file_AbilityApplyLevelModifier_proto_rawDesc = nil
|
|
||||||
file_AbilityApplyLevelModifier_proto_goTypes = nil
|
|
||||||
file_AbilityApplyLevelModifier_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,216 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityArgument.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityArgument struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
// Types that are assignable to Arg:
|
|
||||||
//
|
|
||||||
// *AbilityArgument_IntArg
|
|
||||||
// *AbilityArgument_FloatArg
|
|
||||||
// *AbilityArgument_StrArg
|
|
||||||
Arg isAbilityArgument_Arg `protobuf_oneof:"arg"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityArgument) Reset() {
|
|
||||||
*x = AbilityArgument{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityArgument_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityArgument) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityArgument) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityArgument) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityArgument_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityArgument.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityArgument) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityArgument_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *AbilityArgument) GetArg() isAbilityArgument_Arg {
|
|
||||||
if m != nil {
|
|
||||||
return m.Arg
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityArgument) GetIntArg() uint32 {
|
|
||||||
if x, ok := x.GetArg().(*AbilityArgument_IntArg); ok {
|
|
||||||
return x.IntArg
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityArgument) GetFloatArg() float32 {
|
|
||||||
if x, ok := x.GetArg().(*AbilityArgument_FloatArg); ok {
|
|
||||||
return x.FloatArg
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityArgument) GetStrArg() string {
|
|
||||||
if x, ok := x.GetArg().(*AbilityArgument_StrArg); ok {
|
|
||||||
return x.StrArg
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
type isAbilityArgument_Arg interface {
|
|
||||||
isAbilityArgument_Arg()
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityArgument_IntArg struct {
|
|
||||||
IntArg uint32 `protobuf:"varint,5,opt,name=int_arg,json=intArg,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityArgument_FloatArg struct {
|
|
||||||
FloatArg float32 `protobuf:"fixed32,15,opt,name=float_arg,json=floatArg,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityArgument_StrArg struct {
|
|
||||||
StrArg string `protobuf:"bytes,11,opt,name=str_arg,json=strArg,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityArgument_IntArg) isAbilityArgument_Arg() {}
|
|
||||||
|
|
||||||
func (*AbilityArgument_FloatArg) isAbilityArgument_Arg() {}
|
|
||||||
|
|
||||||
func (*AbilityArgument_StrArg) isAbilityArgument_Arg() {}
|
|
||||||
|
|
||||||
var File_AbilityArgument_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityArgument_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x15, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e,
|
|
||||||
0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x6d,
|
|
||||||
0x0a, 0x0f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e,
|
|
||||||
0x74, 0x12, 0x19, 0x0a, 0x07, 0x69, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x67, 0x18, 0x05, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x69, 0x6e, 0x74, 0x41, 0x72, 0x67, 0x12, 0x1d, 0x0a, 0x09,
|
|
||||||
0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x61, 0x72, 0x67, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x02, 0x48,
|
|
||||||
0x00, 0x52, 0x08, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x41, 0x72, 0x67, 0x12, 0x19, 0x0a, 0x07, 0x73,
|
|
||||||
0x74, 0x72, 0x5f, 0x61, 0x72, 0x67, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06,
|
|
||||||
0x73, 0x74, 0x72, 0x41, 0x72, 0x67, 0x42, 0x05, 0x0a, 0x03, 0x61, 0x72, 0x67, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityArgument_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityArgument_proto_rawDescData = file_AbilityArgument_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityArgument_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityArgument_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityArgument_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityArgument_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityArgument_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityArgument_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityArgument_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityArgument)(nil), // 0: proto.AbilityArgument
|
|
||||||
}
|
|
||||||
var file_AbilityArgument_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityArgument_proto_init() }
|
|
||||||
func file_AbilityArgument_proto_init() {
|
|
||||||
if File_AbilityArgument_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityArgument_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityArgument); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityArgument_proto_msgTypes[0].OneofWrappers = []interface{}{
|
|
||||||
(*AbilityArgument_IntArg)(nil),
|
|
||||||
(*AbilityArgument_FloatArg)(nil),
|
|
||||||
(*AbilityArgument_StrArg)(nil),
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityArgument_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityArgument_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityArgument_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityArgument_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityArgument_proto = out.File
|
|
||||||
file_AbilityArgument_proto_rawDesc = nil
|
|
||||||
file_AbilityArgument_proto_goTypes = nil
|
|
||||||
file_AbilityArgument_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,204 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityAttachedModifier.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityAttachedModifier struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsInvalid bool `protobuf:"varint,1,opt,name=is_invalid,json=isInvalid,proto3" json:"is_invalid,omitempty"`
|
|
||||||
OwnerEntityId uint32 `protobuf:"varint,2,opt,name=owner_entity_id,json=ownerEntityId,proto3" json:"owner_entity_id,omitempty"`
|
|
||||||
InstancedModifierId uint32 `protobuf:"varint,3,opt,name=instanced_modifier_id,json=instancedModifierId,proto3" json:"instanced_modifier_id,omitempty"`
|
|
||||||
IsServerbuffModifier bool `protobuf:"varint,4,opt,name=is_serverbuff_modifier,json=isServerbuffModifier,proto3" json:"is_serverbuff_modifier,omitempty"`
|
|
||||||
AttachNameHash int32 `protobuf:"varint,5,opt,name=attach_name_hash,json=attachNameHash,proto3" json:"attach_name_hash,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) Reset() {
|
|
||||||
*x = AbilityAttachedModifier{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityAttachedModifier_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityAttachedModifier) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityAttachedModifier_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityAttachedModifier.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityAttachedModifier) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityAttachedModifier_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) GetIsInvalid() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsInvalid
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) GetOwnerEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.OwnerEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) GetInstancedModifierId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedModifierId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) GetIsServerbuffModifier() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsServerbuffModifier
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityAttachedModifier) GetAttachNameHash() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AttachNameHash
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityAttachedModifier_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityAttachedModifier_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65,
|
|
||||||
0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf4, 0x01, 0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69,
|
|
||||||
0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64,
|
|
||||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69,
|
|
||||||
0x64, 0x12, 0x26, 0x0a, 0x0f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74,
|
|
||||||
0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x6f, 0x77, 0x6e, 0x65,
|
|
||||||
0x72, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x15, 0x69, 0x6e, 0x73,
|
|
||||||
0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f,
|
|
||||||
0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x13, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e,
|
|
||||||
0x63, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x49, 0x64, 0x12, 0x34, 0x0a,
|
|
||||||
0x16, 0x69, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x5f, 0x6d,
|
|
||||||
0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69,
|
|
||||||
0x73, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x4d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x10, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x5f, 0x6e, 0x61,
|
|
||||||
0x6d, 0x65, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x61,
|
|
||||||
0x74, 0x74, 0x61, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x48, 0x61, 0x73, 0x68, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityAttachedModifier_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityAttachedModifier_proto_rawDescData = file_AbilityAttachedModifier_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityAttachedModifier_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityAttachedModifier_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityAttachedModifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityAttachedModifier_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityAttachedModifier_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityAttachedModifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityAttachedModifier_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityAttachedModifier)(nil), // 0: proto.AbilityAttachedModifier
|
|
||||||
}
|
|
||||||
var file_AbilityAttachedModifier_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityAttachedModifier_proto_init() }
|
|
||||||
func file_AbilityAttachedModifier_proto_init() {
|
|
||||||
if File_AbilityAttachedModifier_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityAttachedModifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityAttachedModifier); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityAttachedModifier_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityAttachedModifier_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityAttachedModifier_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityAttachedModifier_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityAttachedModifier_proto = out.File
|
|
||||||
file_AbilityAttachedModifier_proto_rawDesc = nil
|
|
||||||
file_AbilityAttachedModifier_proto_goTypes = nil
|
|
||||||
file_AbilityAttachedModifier_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityBornType.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityBornType struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Rot *Vector `protobuf:"bytes,2,opt,name=rot,proto3" json:"rot,omitempty"`
|
|
||||||
MoveDir *Vector `protobuf:"bytes,14,opt,name=move_dir,json=moveDir,proto3" json:"move_dir,omitempty"`
|
|
||||||
Pos *Vector `protobuf:"bytes,5,opt,name=pos,proto3" json:"pos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityBornType) Reset() {
|
|
||||||
*x = AbilityBornType{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityBornType_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityBornType) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityBornType) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityBornType) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityBornType_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityBornType.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityBornType) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityBornType_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityBornType) GetRot() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Rot
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityBornType) GetMoveDir() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.MoveDir
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityBornType) GetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Pos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityBornType_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityBornType_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x15, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x6f, 0x72, 0x6e, 0x54, 0x79, 0x70,
|
|
||||||
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c,
|
|
||||||
0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7d, 0x0a, 0x0f,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x6f, 0x72, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
||||||
0x1f, 0x0a, 0x03, 0x72, 0x6f, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x72, 0x6f, 0x74,
|
|
||||||
0x12, 0x28, 0x0a, 0x08, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x0e, 0x20, 0x01,
|
|
||||||
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f,
|
|
||||||
0x72, 0x52, 0x07, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x69, 0x72, 0x12, 0x1f, 0x0a, 0x03, 0x70, 0x6f,
|
|
||||||
0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
|
||||||
0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e,
|
|
||||||
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityBornType_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityBornType_proto_rawDescData = file_AbilityBornType_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityBornType_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityBornType_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityBornType_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityBornType_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityBornType_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityBornType_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityBornType_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityBornType)(nil), // 0: proto.AbilityBornType
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityBornType_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityBornType.rot:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityBornType.move_dir:type_name -> proto.Vector
|
|
||||||
1, // 2: proto.AbilityBornType.pos:type_name -> proto.Vector
|
|
||||||
3, // [3:3] is the sub-list for method output_type
|
|
||||||
3, // [3:3] is the sub-list for method input_type
|
|
||||||
3, // [3:3] is the sub-list for extension type_name
|
|
||||||
3, // [3:3] is the sub-list for extension extendee
|
|
||||||
0, // [0:3] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityBornType_proto_init() }
|
|
||||||
func file_AbilityBornType_proto_init() {
|
|
||||||
if File_AbilityBornType_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityBornType_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityBornType); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityBornType_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityBornType_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityBornType_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityBornType_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityBornType_proto = out.File
|
|
||||||
file_AbilityBornType_proto_rawDesc = nil
|
|
||||||
file_AbilityBornType_proto_goTypes = nil
|
|
||||||
file_AbilityBornType_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,180 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityChangeNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 1131
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type AbilityChangeNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
EntityId uint32 `protobuf:"varint,1,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
|
|
||||||
AbilityControlBlock *AbilityControlBlock `protobuf:"bytes,15,opt,name=ability_control_block,json=abilityControlBlock,proto3" json:"ability_control_block,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityChangeNotify) Reset() {
|
|
||||||
*x = AbilityChangeNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityChangeNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityChangeNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityChangeNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityChangeNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityChangeNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityChangeNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityChangeNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityChangeNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityChangeNotify) GetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityChangeNotify) GetAbilityControlBlock() *AbilityControlBlock {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityControlBlock
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityChangeNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityChangeNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4e,
|
|
||||||
0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x1a, 0x19, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72,
|
|
||||||
0x6f, 0x6c, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x82, 0x01,
|
|
||||||
0x0a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4e,
|
|
||||||
0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f,
|
|
||||||
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79,
|
|
||||||
0x49, 0x64, 0x12, 0x4e, 0x0a, 0x15, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f,
|
|
||||||
0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28,
|
|
||||||
0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x13, 0x61,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x42, 0x6c, 0x6f,
|
|
||||||
0x63, 0x6b, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityChangeNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityChangeNotify_proto_rawDescData = file_AbilityChangeNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityChangeNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityChangeNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityChangeNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityChangeNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityChangeNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityChangeNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityChangeNotify_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityChangeNotify)(nil), // 0: proto.AbilityChangeNotify
|
|
||||||
(*AbilityControlBlock)(nil), // 1: proto.AbilityControlBlock
|
|
||||||
}
|
|
||||||
var file_AbilityChangeNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityChangeNotify.ability_control_block:type_name -> proto.AbilityControlBlock
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityChangeNotify_proto_init() }
|
|
||||||
func file_AbilityChangeNotify_proto_init() {
|
|
||||||
if File_AbilityChangeNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityControlBlock_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityChangeNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityChangeNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityChangeNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityChangeNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityChangeNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityChangeNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityChangeNotify_proto = out.File
|
|
||||||
file_AbilityChangeNotify_proto_rawDesc = nil
|
|
||||||
file_AbilityChangeNotify_proto_goTypes = nil
|
|
||||||
file_AbilityChangeNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,166 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityControlBlock.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityControlBlock struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AbilityEmbryoList []*AbilityEmbryo `protobuf:"bytes,1,rep,name=ability_embryo_list,json=abilityEmbryoList,proto3" json:"ability_embryo_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityControlBlock) Reset() {
|
|
||||||
*x = AbilityControlBlock{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityControlBlock_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityControlBlock) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityControlBlock) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityControlBlock) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityControlBlock_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityControlBlock.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityControlBlock) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityControlBlock_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityControlBlock) GetAbilityEmbryoList() []*AbilityEmbryo {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityEmbryoList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityControlBlock_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityControlBlock_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
|
|
||||||
0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x1a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6d, 0x62, 0x72, 0x79,
|
|
||||||
0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x44,
|
|
||||||
0x0a, 0x13, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65, 0x6d, 0x62, 0x72, 0x79, 0x6f,
|
|
||||||
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6d, 0x62, 0x72, 0x79,
|
|
||||||
0x6f, 0x52, 0x11, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6d, 0x62, 0x72, 0x79, 0x6f,
|
|
||||||
0x4c, 0x69, 0x73, 0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityControlBlock_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityControlBlock_proto_rawDescData = file_AbilityControlBlock_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityControlBlock_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityControlBlock_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityControlBlock_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityControlBlock_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityControlBlock_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityControlBlock_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityControlBlock_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityControlBlock)(nil), // 0: proto.AbilityControlBlock
|
|
||||||
(*AbilityEmbryo)(nil), // 1: proto.AbilityEmbryo
|
|
||||||
}
|
|
||||||
var file_AbilityControlBlock_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityControlBlock.ability_embryo_list:type_name -> proto.AbilityEmbryo
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityControlBlock_proto_init() }
|
|
||||||
func file_AbilityControlBlock_proto_init() {
|
|
||||||
if File_AbilityControlBlock_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityEmbryo_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityControlBlock_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityControlBlock); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityControlBlock_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityControlBlock_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityControlBlock_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityControlBlock_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityControlBlock_proto = out.File
|
|
||||||
file_AbilityControlBlock_proto_rawDesc = nil
|
|
||||||
file_AbilityControlBlock_proto_goTypes = nil
|
|
||||||
file_AbilityControlBlock_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,181 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityEmbryo.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityEmbryo struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AbilityId uint32 `protobuf:"varint,1,opt,name=ability_id,json=abilityId,proto3" json:"ability_id,omitempty"`
|
|
||||||
AbilityNameHash uint32 `protobuf:"fixed32,2,opt,name=ability_name_hash,json=abilityNameHash,proto3" json:"ability_name_hash,omitempty"`
|
|
||||||
AbilityOverrideNameHash uint32 `protobuf:"fixed32,3,opt,name=ability_override_name_hash,json=abilityOverrideNameHash,proto3" json:"ability_override_name_hash,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityEmbryo) Reset() {
|
|
||||||
*x = AbilityEmbryo{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityEmbryo_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityEmbryo) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityEmbryo) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityEmbryo) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityEmbryo_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityEmbryo.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityEmbryo) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityEmbryo_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityEmbryo) GetAbilityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityEmbryo) GetAbilityNameHash() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityNameHash
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityEmbryo) GetAbilityOverrideNameHash() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityOverrideNameHash
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityEmbryo_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityEmbryo_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6d, 0x62, 0x72, 0x79, 0x6f, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x97, 0x01, 0x0a,
|
|
||||||
0x0d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6d, 0x62, 0x72, 0x79, 0x6f, 0x12, 0x1d,
|
|
||||||
0x0a, 0x0a, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x09, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x2a, 0x0a,
|
|
||||||
0x11, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x68, 0x61,
|
|
||||||
0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x4e, 0x61, 0x6d, 0x65, 0x48, 0x61, 0x73, 0x68, 0x12, 0x3b, 0x0a, 0x1a, 0x61, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x6e, 0x61,
|
|
||||||
0x6d, 0x65, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x07, 0x52, 0x17, 0x61,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4e, 0x61,
|
|
||||||
0x6d, 0x65, 0x48, 0x61, 0x73, 0x68, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityEmbryo_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityEmbryo_proto_rawDescData = file_AbilityEmbryo_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityEmbryo_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityEmbryo_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityEmbryo_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityEmbryo_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityEmbryo_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityEmbryo_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityEmbryo_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityEmbryo)(nil), // 0: proto.AbilityEmbryo
|
|
||||||
}
|
|
||||||
var file_AbilityEmbryo_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityEmbryo_proto_init() }
|
|
||||||
func file_AbilityEmbryo_proto_init() {
|
|
||||||
if File_AbilityEmbryo_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityEmbryo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityEmbryo); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityEmbryo_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityEmbryo_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityEmbryo_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityEmbryo_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityEmbryo_proto = out.File
|
|
||||||
file_AbilityEmbryo_proto_rawDesc = nil
|
|
||||||
file_AbilityEmbryo_proto_goTypes = nil
|
|
||||||
file_AbilityEmbryo_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,158 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityFloatValue.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityFloatValue struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityFloatValue) Reset() {
|
|
||||||
*x = AbilityFloatValue{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityFloatValue_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityFloatValue) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityFloatValue) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityFloatValue) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityFloatValue_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityFloatValue.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityFloatValue) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityFloatValue_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityFloatValue) GetValue() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Value
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityFloatValue_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityFloatValue_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x56, 0x61,
|
|
||||||
0x6c, 0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x29, 0x0a, 0x11, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x46, 0x6c, 0x6f, 0x61, 0x74,
|
|
||||||
0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01,
|
|
||||||
0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e,
|
|
||||||
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityFloatValue_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityFloatValue_proto_rawDescData = file_AbilityFloatValue_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityFloatValue_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityFloatValue_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityFloatValue_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityFloatValue_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityFloatValue_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityFloatValue_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityFloatValue_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityFloatValue)(nil), // 0: proto.AbilityFloatValue
|
|
||||||
}
|
|
||||||
var file_AbilityFloatValue_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityFloatValue_proto_init() }
|
|
||||||
func file_AbilityFloatValue_proto_init() {
|
|
||||||
if File_AbilityFloatValue_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityFloatValue_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityFloatValue); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityFloatValue_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityFloatValue_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityFloatValue_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityFloatValue_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityFloatValue_proto = out.File
|
|
||||||
file_AbilityFloatValue_proto_rawDesc = nil
|
|
||||||
file_AbilityFloatValue_proto_goTypes = nil
|
|
||||||
file_AbilityFloatValue_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,180 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityGadgetInfo.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityGadgetInfo struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
CampId uint32 `protobuf:"varint,1,opt,name=camp_id,json=campId,proto3" json:"camp_id,omitempty"`
|
|
||||||
CampTargetType uint32 `protobuf:"varint,2,opt,name=camp_target_type,json=campTargetType,proto3" json:"camp_target_type,omitempty"`
|
|
||||||
TargetEntityId uint32 `protobuf:"varint,3,opt,name=target_entity_id,json=targetEntityId,proto3" json:"target_entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityGadgetInfo) Reset() {
|
|
||||||
*x = AbilityGadgetInfo{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityGadgetInfo_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityGadgetInfo) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityGadgetInfo) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityGadgetInfo) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityGadgetInfo_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityGadgetInfo.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityGadgetInfo) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityGadgetInfo_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityGadgetInfo) GetCampId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.CampId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityGadgetInfo) GetCampTargetType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.CampTargetType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityGadgetInfo) GetTargetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TargetEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityGadgetInfo_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityGadgetInfo_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x47, 0x61, 0x64, 0x67, 0x65, 0x74, 0x49,
|
|
||||||
0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x80, 0x01, 0x0a, 0x11, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x47, 0x61, 0x64, 0x67,
|
|
||||||
0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x61, 0x6d, 0x70, 0x5f, 0x69,
|
|
||||||
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x61, 0x6d, 0x70, 0x49, 0x64, 0x12,
|
|
||||||
0x28, 0x0a, 0x10, 0x63, 0x61, 0x6d, 0x70, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74,
|
|
||||||
0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x54,
|
|
||||||
0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x74, 0x61, 0x72,
|
|
||||||
0x67, 0x65, 0x74, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74,
|
|
||||||
0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
||||||
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityGadgetInfo_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityGadgetInfo_proto_rawDescData = file_AbilityGadgetInfo_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityGadgetInfo_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityGadgetInfo_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityGadgetInfo_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityGadgetInfo_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityGadgetInfo_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityGadgetInfo_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityGadgetInfo_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityGadgetInfo)(nil), // 0: proto.AbilityGadgetInfo
|
|
||||||
}
|
|
||||||
var file_AbilityGadgetInfo_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityGadgetInfo_proto_init() }
|
|
||||||
func file_AbilityGadgetInfo_proto_init() {
|
|
||||||
if File_AbilityGadgetInfo_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityGadgetInfo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityGadgetInfo); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityGadgetInfo_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityGadgetInfo_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityGadgetInfo_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityGadgetInfo_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityGadgetInfo_proto = out.File
|
|
||||||
file_AbilityGadgetInfo_proto_rawDesc = nil
|
|
||||||
file_AbilityGadgetInfo_proto_goTypes = nil
|
|
||||||
file_AbilityGadgetInfo_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,214 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityIdentifier.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityIdentifier struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ModifierOwnerId uint32 `protobuf:"varint,2,opt,name=modifier_owner_id,json=modifierOwnerId,proto3" json:"modifier_owner_id,omitempty"`
|
|
||||||
InstancedModifierId uint32 `protobuf:"varint,9,opt,name=instanced_modifier_id,json=instancedModifierId,proto3" json:"instanced_modifier_id,omitempty"`
|
|
||||||
InstancedAbilityId uint32 `protobuf:"varint,10,opt,name=instanced_ability_id,json=instancedAbilityId,proto3" json:"instanced_ability_id,omitempty"`
|
|
||||||
IsServerbuffModifier bool `protobuf:"varint,6,opt,name=is_serverbuff_modifier,json=isServerbuffModifier,proto3" json:"is_serverbuff_modifier,omitempty"`
|
|
||||||
AbilityCasterId uint32 `protobuf:"varint,15,opt,name=ability_caster_id,json=abilityCasterId,proto3" json:"ability_caster_id,omitempty"`
|
|
||||||
LocalId int32 `protobuf:"varint,3,opt,name=local_id,json=localId,proto3" json:"local_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) Reset() {
|
|
||||||
*x = AbilityIdentifier{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityIdentifier_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityIdentifier) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityIdentifier_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityIdentifier.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityIdentifier) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityIdentifier_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) GetModifierOwnerId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ModifierOwnerId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) GetInstancedModifierId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedModifierId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) GetInstancedAbilityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedAbilityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) GetIsServerbuffModifier() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsServerbuffModifier
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) GetAbilityCasterId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityCasterId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityIdentifier) GetLocalId() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.LocalId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityIdentifier_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityIdentifier_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0xa2, 0x02, 0x0a, 0x11, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x64, 0x65, 0x6e,
|
|
||||||
0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x11, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,
|
|
||||||
0x65, 0x72, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x0f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x4f, 0x77, 0x6e, 0x65, 0x72,
|
|
||||||
0x49, 0x64, 0x12, 0x32, 0x0a, 0x15, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f,
|
|
||||||
0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x13, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69,
|
|
||||||
0x66, 0x69, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e,
|
|
||||||
0x63, 0x65, 0x64, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0a,
|
|
||||||
0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x41,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x34, 0x0a, 0x16, 0x69, 0x73, 0x5f, 0x73,
|
|
||||||
0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,
|
|
||||||
0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x73, 0x53, 0x65, 0x72, 0x76,
|
|
||||||
0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x2a,
|
|
||||||
0x0a, 0x11, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x73, 0x74, 0x65, 0x72,
|
|
||||||
0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x61, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x43, 0x61, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x6f,
|
|
||||||
0x63, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c, 0x6f,
|
|
||||||
0x63, 0x61, 0x6c, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityIdentifier_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityIdentifier_proto_rawDescData = file_AbilityIdentifier_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityIdentifier_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityIdentifier_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityIdentifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityIdentifier_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityIdentifier_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityIdentifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityIdentifier_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityIdentifier)(nil), // 0: proto.AbilityIdentifier
|
|
||||||
}
|
|
||||||
var file_AbilityIdentifier_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityIdentifier_proto_init() }
|
|
||||||
func file_AbilityIdentifier_proto_init() {
|
|
||||||
if File_AbilityIdentifier_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityIdentifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityIdentifier); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityIdentifier_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityIdentifier_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityIdentifier_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityIdentifier_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityIdentifier_proto = out.File
|
|
||||||
file_AbilityIdentifier_proto_rawDesc = nil
|
|
||||||
file_AbilityIdentifier_proto_goTypes = nil
|
|
||||||
file_AbilityIdentifier_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,188 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityInvocationFailNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 1107
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type AbilityInvocationFailNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Reason string `protobuf:"bytes,7,opt,name=reason,proto3" json:"reason,omitempty"`
|
|
||||||
EntityId uint32 `protobuf:"varint,13,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
|
|
||||||
Invoke *AbilityInvokeEntry `protobuf:"bytes,3,opt,name=invoke,proto3" json:"invoke,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFailNotify) Reset() {
|
|
||||||
*x = AbilityInvocationFailNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityInvocationFailNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFailNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityInvocationFailNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFailNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityInvocationFailNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityInvocationFailNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityInvocationFailNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityInvocationFailNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFailNotify) GetReason() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Reason
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFailNotify) GetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFailNotify) GetInvoke() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityInvocationFailNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityInvocationFailNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x63, 0x61, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x46, 0x61, 0x69, 0x6c, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x85, 0x01, 0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x49, 0x6e, 0x76, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x61, 0x69, 0x6c, 0x4e, 0x6f,
|
|
||||||
0x74, 0x69, 0x66, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x07,
|
|
||||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09,
|
|
||||||
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x31, 0x0a, 0x06, 0x69, 0x6e, 0x76,
|
|
||||||
0x6f, 0x6b, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityInvocationFailNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityInvocationFailNotify_proto_rawDescData = file_AbilityInvocationFailNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityInvocationFailNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityInvocationFailNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityInvocationFailNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityInvocationFailNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityInvocationFailNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityInvocationFailNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityInvocationFailNotify_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityInvocationFailNotify)(nil), // 0: proto.AbilityInvocationFailNotify
|
|
||||||
(*AbilityInvokeEntry)(nil), // 1: proto.AbilityInvokeEntry
|
|
||||||
}
|
|
||||||
var file_AbilityInvocationFailNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityInvocationFailNotify.invoke:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityInvocationFailNotify_proto_init() }
|
|
||||||
func file_AbilityInvocationFailNotify_proto_init() {
|
|
||||||
if File_AbilityInvocationFailNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityInvokeEntry_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityInvocationFailNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityInvocationFailNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityInvocationFailNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityInvocationFailNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityInvocationFailNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityInvocationFailNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityInvocationFailNotify_proto = out.File
|
|
||||||
file_AbilityInvocationFailNotify_proto_rawDesc = nil
|
|
||||||
file_AbilityInvocationFailNotify_proto_goTypes = nil
|
|
||||||
file_AbilityInvocationFailNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,233 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityInvocationFixedNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 1172
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
type AbilityInvocationFixedNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Invoke6Th *AbilityInvokeEntry `protobuf:"bytes,14,opt,name=invoke6th,proto3" json:"invoke6th,omitempty"`
|
|
||||||
Invoke5Th *AbilityInvokeEntry `protobuf:"bytes,8,opt,name=invoke5th,proto3" json:"invoke5th,omitempty"`
|
|
||||||
Invoke4Th *AbilityInvokeEntry `protobuf:"bytes,1,opt,name=invoke4th,proto3" json:"invoke4th,omitempty"`
|
|
||||||
Invoke2Nd *AbilityInvokeEntry `protobuf:"bytes,5,opt,name=invoke2nd,proto3" json:"invoke2nd,omitempty"`
|
|
||||||
Invoke1St *AbilityInvokeEntry `protobuf:"bytes,10,opt,name=invoke1st,proto3" json:"invoke1st,omitempty"`
|
|
||||||
Invoke3Rd *AbilityInvokeEntry `protobuf:"bytes,12,opt,name=invoke3rd,proto3" json:"invoke3rd,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) Reset() {
|
|
||||||
*x = AbilityInvocationFixedNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityInvocationFixedNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityInvocationFixedNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityInvocationFixedNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityInvocationFixedNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityInvocationFixedNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityInvocationFixedNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) GetInvoke6Th() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke6Th
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) GetInvoke5Th() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke5Th
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) GetInvoke4Th() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke4Th
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) GetInvoke2Nd() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke2Nd
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) GetInvoke1St() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke1St
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationFixedNotify) GetInvoke3Rd() *AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invoke3Rd
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityInvocationFixedNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityInvocationFixedNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x22, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x63, 0x61, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf4, 0x02, 0x0a, 0x1c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x49, 0x6e, 0x76, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x78, 0x65, 0x64,
|
|
||||||
0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x37, 0x0a, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65,
|
|
||||||
0x36, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x36, 0x74, 0x68, 0x12,
|
|
||||||
0x37, 0x0a, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x35, 0x74, 0x68, 0x18, 0x08, 0x20, 0x01,
|
|
||||||
0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x69,
|
|
||||||
0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x35, 0x74, 0x68, 0x12, 0x37, 0x0a, 0x09, 0x69, 0x6e, 0x76, 0x6f,
|
|
||||||
0x6b, 0x65, 0x34, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b,
|
|
||||||
0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x34, 0x74,
|
|
||||||
0x68, 0x12, 0x37, 0x0a, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x32, 0x6e, 0x64, 0x18, 0x05,
|
|
||||||
0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
|
|
||||||
0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x37, 0x0a, 0x09, 0x69, 0x6e,
|
|
||||||
0x76, 0x6f, 0x6b, 0x65, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76,
|
|
||||||
0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65,
|
|
||||||
0x31, 0x73, 0x74, 0x12, 0x37, 0x0a, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x33, 0x72, 0x64,
|
|
||||||
0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72,
|
|
||||||
0x79, 0x52, 0x09, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x33, 0x72, 0x64, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityInvocationFixedNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityInvocationFixedNotify_proto_rawDescData = file_AbilityInvocationFixedNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityInvocationFixedNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityInvocationFixedNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityInvocationFixedNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityInvocationFixedNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityInvocationFixedNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityInvocationFixedNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityInvocationFixedNotify_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityInvocationFixedNotify)(nil), // 0: proto.AbilityInvocationFixedNotify
|
|
||||||
(*AbilityInvokeEntry)(nil), // 1: proto.AbilityInvokeEntry
|
|
||||||
}
|
|
||||||
var file_AbilityInvocationFixedNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityInvocationFixedNotify.invoke6th:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // 1: proto.AbilityInvocationFixedNotify.invoke5th:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // 2: proto.AbilityInvocationFixedNotify.invoke4th:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // 3: proto.AbilityInvocationFixedNotify.invoke2nd:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // 4: proto.AbilityInvocationFixedNotify.invoke1st:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // 5: proto.AbilityInvocationFixedNotify.invoke3rd:type_name -> proto.AbilityInvokeEntry
|
|
||||||
6, // [6:6] is the sub-list for method output_type
|
|
||||||
6, // [6:6] is the sub-list for method input_type
|
|
||||||
6, // [6:6] is the sub-list for extension type_name
|
|
||||||
6, // [6:6] is the sub-list for extension extendee
|
|
||||||
0, // [0:6] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityInvocationFixedNotify_proto_init() }
|
|
||||||
func file_AbilityInvocationFixedNotify_proto_init() {
|
|
||||||
if File_AbilityInvocationFixedNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityInvokeEntry_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityInvocationFixedNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityInvocationFixedNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityInvocationFixedNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityInvocationFixedNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityInvocationFixedNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityInvocationFixedNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityInvocationFixedNotify_proto = out.File
|
|
||||||
file_AbilityInvocationFixedNotify_proto_rawDesc = nil
|
|
||||||
file_AbilityInvocationFixedNotify_proto_goTypes = nil
|
|
||||||
file_AbilityInvocationFixedNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,170 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityInvocationsNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 1198
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
type AbilityInvocationsNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Invokes []*AbilityInvokeEntry `protobuf:"bytes,2,rep,name=invokes,proto3" json:"invokes,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationsNotify) Reset() {
|
|
||||||
*x = AbilityInvocationsNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityInvocationsNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationsNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityInvocationsNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationsNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityInvocationsNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityInvocationsNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityInvocationsNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityInvocationsNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvocationsNotify) GetInvokes() []*AbilityInvokeEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.Invokes
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityInvocationsNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityInvocationsNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x63, 0x61, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x22, 0x4f, 0x0a, 0x18, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f,
|
|
||||||
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x33, 0x0a,
|
|
||||||
0x07, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e,
|
|
||||||
0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x69, 0x6e, 0x76, 0x6f, 0x6b,
|
|
||||||
0x65, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityInvocationsNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityInvocationsNotify_proto_rawDescData = file_AbilityInvocationsNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityInvocationsNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityInvocationsNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityInvocationsNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityInvocationsNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityInvocationsNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityInvocationsNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityInvocationsNotify_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityInvocationsNotify)(nil), // 0: proto.AbilityInvocationsNotify
|
|
||||||
(*AbilityInvokeEntry)(nil), // 1: proto.AbilityInvokeEntry
|
|
||||||
}
|
|
||||||
var file_AbilityInvocationsNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityInvocationsNotify.invokes:type_name -> proto.AbilityInvokeEntry
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityInvocationsNotify_proto_init() }
|
|
||||||
func file_AbilityInvocationsNotify_proto_init() {
|
|
||||||
if File_AbilityInvocationsNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityInvokeEntry_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityInvocationsNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityInvocationsNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityInvocationsNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityInvocationsNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityInvocationsNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityInvocationsNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityInvocationsNotify_proto = out.File
|
|
||||||
file_AbilityInvocationsNotify_proto_rawDesc = nil
|
|
||||||
file_AbilityInvocationsNotify_proto_goTypes = nil
|
|
||||||
file_AbilityInvocationsNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,525 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityInvokeArgument.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityInvokeArgument int32
|
|
||||||
|
|
||||||
const (
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_NONE AbilityInvokeArgument = 0
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_MODIFIER_CHANGE AbilityInvokeArgument = 1
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_COMMAND_MODIFIER_CHANGE_REQUEST AbilityInvokeArgument = 2
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_SPECIAL_FLOAT_ARGUMENT AbilityInvokeArgument = 3
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_OVERRIDE_PARAM AbilityInvokeArgument = 4
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_CLEAR_OVERRIDE_PARAM AbilityInvokeArgument = 5
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_REINIT_OVERRIDEMAP AbilityInvokeArgument = 6
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_GLOBAL_FLOAT_VALUE AbilityInvokeArgument = 7
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_CLEAR_GLOBAL_FLOAT_VALUE AbilityInvokeArgument = 8
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_ABILITY_ELEMENT_STRENGTH AbilityInvokeArgument = 9
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_ADD_OR_GET_ABILITY_AND_TRIGGER AbilityInvokeArgument = 10
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_SET_KILLED_STATE AbilityInvokeArgument = 11
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_SET_ABILITY_TRIGGER AbilityInvokeArgument = 12
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_ADD_NEW_ABILITY AbilityInvokeArgument = 13
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_REMOVE_ABILITY AbilityInvokeArgument = 14
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_SET_MODIFIER_APPLY_ENTITY AbilityInvokeArgument = 15
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_MODIFIER_DURABILITY_CHANGE AbilityInvokeArgument = 16
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_ELEMENT_REACTION_VISUAL AbilityInvokeArgument = 17
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_SET_POSE_PARAMETER AbilityInvokeArgument = 18
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_UPDATE_BASE_REACTION_DAMAGE AbilityInvokeArgument = 19
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_TRIGGER_ELEMENT_REACTION AbilityInvokeArgument = 20
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_LOSE_HP AbilityInvokeArgument = 21
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_META_DURABILITY_IS_ZERO AbilityInvokeArgument = 22
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_TRIGGER_ABILITY AbilityInvokeArgument = 50
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_SET_CRASH_DAMAGE AbilityInvokeArgument = 51
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_EFFECT AbilityInvokeArgument = 52
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_SUMMON AbilityInvokeArgument = 53
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_BLINK AbilityInvokeArgument = 54
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_GADGET AbilityInvokeArgument = 55
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_APPLY_LEVEL_MODIFIER AbilityInvokeArgument = 56
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_GENERATE_ELEM_BALL AbilityInvokeArgument = 57
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_SET_RANDOM_OVERRIDE_MAP_VALUE AbilityInvokeArgument = 58
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_SERVER_MONSTER_LOG AbilityInvokeArgument = 59
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_TILE AbilityInvokeArgument = 60
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_DESTROY_TILE AbilityInvokeArgument = 61
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_FIRE_AFTER_IMAGE AbilityInvokeArgument = 62
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_DEDUCT_STAMINA AbilityInvokeArgument = 63
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_HIT_EFFECT AbilityInvokeArgument = 64
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_ACTION_SET_BULLET_TRACK_TARGET AbilityInvokeArgument = 65
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_STEER_BY_CAMERA AbilityInvokeArgument = 100
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_MONSTER_DEFEND AbilityInvokeArgument = 101
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_ZONE AbilityInvokeArgument = 102
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_COST_STAMINA AbilityInvokeArgument = 103
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_ELITE_SHIELD AbilityInvokeArgument = 104
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_ELEMENT_SHIELD AbilityInvokeArgument = 105
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_GLOBAL_SHIELD AbilityInvokeArgument = 106
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_SHIELD_BAR AbilityInvokeArgument = 107
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_SEED_SPAWNER AbilityInvokeArgument = 108
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_ELEMENT_REACTION AbilityInvokeArgument = 109
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_FIELD_ENTITY_COUNT_CHANGE AbilityInvokeArgument = 110
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_SCENE_PROP_SYNC AbilityInvokeArgument = 111
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_WIDGET_MP_SUPPORT AbilityInvokeArgument = 112
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_SELF_MODIFIER_ELEMENT_DURABILITY_RATIO AbilityInvokeArgument = 113
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_FIREWORKS_LAUNCHER AbilityInvokeArgument = 114
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_ATTACK_RESULT_CREATE_COUNT AbilityInvokeArgument = 115
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_UGC_TIME_CONTROL AbilityInvokeArgument = 116
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_COMBAT AbilityInvokeArgument = 117
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_DEATH_ZONE_REGIONAL_PLAY_MIXIN AbilityInvokeArgument = 118
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_UI_INTERACT AbilityInvokeArgument = 119
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_SHOOT_FROM_CAMERA AbilityInvokeArgument = 120
|
|
||||||
AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_MIXIN_ERASE_BRICK_ACTIVITY AbilityInvokeArgument = 121
|
|
||||||
)
|
|
||||||
|
|
||||||
// Enum value maps for AbilityInvokeArgument.
|
|
||||||
var (
|
|
||||||
AbilityInvokeArgument_name = map[int32]string{
|
|
||||||
0: "ABILITY_INVOKE_ARGUMENT_NONE",
|
|
||||||
1: "ABILITY_INVOKE_ARGUMENT_META_MODIFIER_CHANGE",
|
|
||||||
2: "ABILITY_INVOKE_ARGUMENT_META_COMMAND_MODIFIER_CHANGE_REQUEST",
|
|
||||||
3: "ABILITY_INVOKE_ARGUMENT_META_SPECIAL_FLOAT_ARGUMENT",
|
|
||||||
4: "ABILITY_INVOKE_ARGUMENT_META_OVERRIDE_PARAM",
|
|
||||||
5: "ABILITY_INVOKE_ARGUMENT_META_CLEAR_OVERRIDE_PARAM",
|
|
||||||
6: "ABILITY_INVOKE_ARGUMENT_META_REINIT_OVERRIDEMAP",
|
|
||||||
7: "ABILITY_INVOKE_ARGUMENT_META_GLOBAL_FLOAT_VALUE",
|
|
||||||
8: "ABILITY_INVOKE_ARGUMENT_META_CLEAR_GLOBAL_FLOAT_VALUE",
|
|
||||||
9: "ABILITY_INVOKE_ARGUMENT_META_ABILITY_ELEMENT_STRENGTH",
|
|
||||||
10: "ABILITY_INVOKE_ARGUMENT_META_ADD_OR_GET_ABILITY_AND_TRIGGER",
|
|
||||||
11: "ABILITY_INVOKE_ARGUMENT_META_SET_KILLED_STATE",
|
|
||||||
12: "ABILITY_INVOKE_ARGUMENT_META_SET_ABILITY_TRIGGER",
|
|
||||||
13: "ABILITY_INVOKE_ARGUMENT_META_ADD_NEW_ABILITY",
|
|
||||||
14: "ABILITY_INVOKE_ARGUMENT_META_REMOVE_ABILITY",
|
|
||||||
15: "ABILITY_INVOKE_ARGUMENT_META_SET_MODIFIER_APPLY_ENTITY",
|
|
||||||
16: "ABILITY_INVOKE_ARGUMENT_META_MODIFIER_DURABILITY_CHANGE",
|
|
||||||
17: "ABILITY_INVOKE_ARGUMENT_META_ELEMENT_REACTION_VISUAL",
|
|
||||||
18: "ABILITY_INVOKE_ARGUMENT_META_SET_POSE_PARAMETER",
|
|
||||||
19: "ABILITY_INVOKE_ARGUMENT_META_UPDATE_BASE_REACTION_DAMAGE",
|
|
||||||
20: "ABILITY_INVOKE_ARGUMENT_META_TRIGGER_ELEMENT_REACTION",
|
|
||||||
21: "ABILITY_INVOKE_ARGUMENT_META_LOSE_HP",
|
|
||||||
22: "ABILITY_INVOKE_ARGUMENT_META_DURABILITY_IS_ZERO",
|
|
||||||
50: "ABILITY_INVOKE_ARGUMENT_ACTION_TRIGGER_ABILITY",
|
|
||||||
51: "ABILITY_INVOKE_ARGUMENT_ACTION_SET_CRASH_DAMAGE",
|
|
||||||
52: "ABILITY_INVOKE_ARGUMENT_ACTION_EFFECT",
|
|
||||||
53: "ABILITY_INVOKE_ARGUMENT_ACTION_SUMMON",
|
|
||||||
54: "ABILITY_INVOKE_ARGUMENT_ACTION_BLINK",
|
|
||||||
55: "ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_GADGET",
|
|
||||||
56: "ABILITY_INVOKE_ARGUMENT_ACTION_APPLY_LEVEL_MODIFIER",
|
|
||||||
57: "ABILITY_INVOKE_ARGUMENT_ACTION_GENERATE_ELEM_BALL",
|
|
||||||
58: "ABILITY_INVOKE_ARGUMENT_ACTION_SET_RANDOM_OVERRIDE_MAP_VALUE",
|
|
||||||
59: "ABILITY_INVOKE_ARGUMENT_ACTION_SERVER_MONSTER_LOG",
|
|
||||||
60: "ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_TILE",
|
|
||||||
61: "ABILITY_INVOKE_ARGUMENT_ACTION_DESTROY_TILE",
|
|
||||||
62: "ABILITY_INVOKE_ARGUMENT_ACTION_FIRE_AFTER_IMAGE",
|
|
||||||
63: "ABILITY_INVOKE_ARGUMENT_ACTION_DEDUCT_STAMINA",
|
|
||||||
64: "ABILITY_INVOKE_ARGUMENT_ACTION_HIT_EFFECT",
|
|
||||||
65: "ABILITY_INVOKE_ARGUMENT_ACTION_SET_BULLET_TRACK_TARGET",
|
|
||||||
100: "ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_STEER_BY_CAMERA",
|
|
||||||
101: "ABILITY_INVOKE_ARGUMENT_MIXIN_MONSTER_DEFEND",
|
|
||||||
102: "ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_ZONE",
|
|
||||||
103: "ABILITY_INVOKE_ARGUMENT_MIXIN_COST_STAMINA",
|
|
||||||
104: "ABILITY_INVOKE_ARGUMENT_MIXIN_ELITE_SHIELD",
|
|
||||||
105: "ABILITY_INVOKE_ARGUMENT_MIXIN_ELEMENT_SHIELD",
|
|
||||||
106: "ABILITY_INVOKE_ARGUMENT_MIXIN_GLOBAL_SHIELD",
|
|
||||||
107: "ABILITY_INVOKE_ARGUMENT_MIXIN_SHIELD_BAR",
|
|
||||||
108: "ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_SEED_SPAWNER",
|
|
||||||
109: "ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_ELEMENT_REACTION",
|
|
||||||
110: "ABILITY_INVOKE_ARGUMENT_MIXIN_FIELD_ENTITY_COUNT_CHANGE",
|
|
||||||
111: "ABILITY_INVOKE_ARGUMENT_MIXIN_SCENE_PROP_SYNC",
|
|
||||||
112: "ABILITY_INVOKE_ARGUMENT_MIXIN_WIDGET_MP_SUPPORT",
|
|
||||||
113: "ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_SELF_MODIFIER_ELEMENT_DURABILITY_RATIO",
|
|
||||||
114: "ABILITY_INVOKE_ARGUMENT_MIXIN_FIREWORKS_LAUNCHER",
|
|
||||||
115: "ABILITY_INVOKE_ARGUMENT_MIXIN_ATTACK_RESULT_CREATE_COUNT",
|
|
||||||
116: "ABILITY_INVOKE_ARGUMENT_MIXIN_UGC_TIME_CONTROL",
|
|
||||||
117: "ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_COMBAT",
|
|
||||||
118: "ABILITY_INVOKE_ARGUMENT_MIXIN_DEATH_ZONE_REGIONAL_PLAY_MIXIN",
|
|
||||||
119: "ABILITY_INVOKE_ARGUMENT_MIXIN_UI_INTERACT",
|
|
||||||
120: "ABILITY_INVOKE_ARGUMENT_MIXIN_SHOOT_FROM_CAMERA",
|
|
||||||
121: "ABILITY_INVOKE_ARGUMENT_MIXIN_ERASE_BRICK_ACTIVITY",
|
|
||||||
}
|
|
||||||
AbilityInvokeArgument_value = map[string]int32{
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_NONE": 0,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_MODIFIER_CHANGE": 1,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_COMMAND_MODIFIER_CHANGE_REQUEST": 2,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_SPECIAL_FLOAT_ARGUMENT": 3,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_OVERRIDE_PARAM": 4,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_CLEAR_OVERRIDE_PARAM": 5,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_REINIT_OVERRIDEMAP": 6,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_GLOBAL_FLOAT_VALUE": 7,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_CLEAR_GLOBAL_FLOAT_VALUE": 8,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_ABILITY_ELEMENT_STRENGTH": 9,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_ADD_OR_GET_ABILITY_AND_TRIGGER": 10,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_SET_KILLED_STATE": 11,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_SET_ABILITY_TRIGGER": 12,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_ADD_NEW_ABILITY": 13,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_REMOVE_ABILITY": 14,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_SET_MODIFIER_APPLY_ENTITY": 15,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_MODIFIER_DURABILITY_CHANGE": 16,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_ELEMENT_REACTION_VISUAL": 17,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_SET_POSE_PARAMETER": 18,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_UPDATE_BASE_REACTION_DAMAGE": 19,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_TRIGGER_ELEMENT_REACTION": 20,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_LOSE_HP": 21,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_META_DURABILITY_IS_ZERO": 22,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_TRIGGER_ABILITY": 50,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_SET_CRASH_DAMAGE": 51,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_EFFECT": 52,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_SUMMON": 53,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_BLINK": 54,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_GADGET": 55,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_APPLY_LEVEL_MODIFIER": 56,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_GENERATE_ELEM_BALL": 57,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_SET_RANDOM_OVERRIDE_MAP_VALUE": 58,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_SERVER_MONSTER_LOG": 59,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_TILE": 60,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_DESTROY_TILE": 61,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_FIRE_AFTER_IMAGE": 62,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_DEDUCT_STAMINA": 63,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_HIT_EFFECT": 64,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_ACTION_SET_BULLET_TRACK_TARGET": 65,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_STEER_BY_CAMERA": 100,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_MONSTER_DEFEND": 101,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_ZONE": 102,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_COST_STAMINA": 103,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_ELITE_SHIELD": 104,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_ELEMENT_SHIELD": 105,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_GLOBAL_SHIELD": 106,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_SHIELD_BAR": 107,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_SEED_SPAWNER": 108,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_ELEMENT_REACTION": 109,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_FIELD_ENTITY_COUNT_CHANGE": 110,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_SCENE_PROP_SYNC": 111,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_WIDGET_MP_SUPPORT": 112,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_SELF_MODIFIER_ELEMENT_DURABILITY_RATIO": 113,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_FIREWORKS_LAUNCHER": 114,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_ATTACK_RESULT_CREATE_COUNT": 115,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_UGC_TIME_CONTROL": 116,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_COMBAT": 117,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_DEATH_ZONE_REGIONAL_PLAY_MIXIN": 118,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_UI_INTERACT": 119,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_SHOOT_FROM_CAMERA": 120,
|
|
||||||
"ABILITY_INVOKE_ARGUMENT_MIXIN_ERASE_BRICK_ACTIVITY": 121,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
func (x AbilityInvokeArgument) Enum() *AbilityInvokeArgument {
|
|
||||||
p := new(AbilityInvokeArgument)
|
|
||||||
*p = x
|
|
||||||
return p
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x AbilityInvokeArgument) String() string {
|
|
||||||
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (AbilityInvokeArgument) Descriptor() protoreflect.EnumDescriptor {
|
|
||||||
return file_AbilityInvokeArgument_proto_enumTypes[0].Descriptor()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (AbilityInvokeArgument) Type() protoreflect.EnumType {
|
|
||||||
return &file_AbilityInvokeArgument_proto_enumTypes[0]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x AbilityInvokeArgument) Number() protoreflect.EnumNumber {
|
|
||||||
return protoreflect.EnumNumber(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityInvokeArgument.Descriptor instead.
|
|
||||||
func (AbilityInvokeArgument) EnumDescriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityInvokeArgument_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityInvokeArgument_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityInvokeArgument_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x41,
|
|
||||||
0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x2a, 0xe6, 0x19, 0x0a, 0x15, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x20,
|
|
||||||
0x0a, 0x1c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45,
|
|
||||||
0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00,
|
|
||||||
0x12, 0x30, 0x0a, 0x2c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f,
|
|
||||||
0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41,
|
|
||||||
0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x49, 0x45, 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45,
|
|
||||||
0x10, 0x01, 0x12, 0x40, 0x0a, 0x3c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e,
|
|
||||||
0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45,
|
|
||||||
0x54, 0x41, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x41, 0x4e, 0x44, 0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46,
|
|
||||||
0x49, 0x45, 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45,
|
|
||||||
0x53, 0x54, 0x10, 0x02, 0x12, 0x37, 0x0a, 0x33, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f,
|
|
||||||
0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f,
|
|
||||||
0x4d, 0x45, 0x54, 0x41, 0x5f, 0x53, 0x50, 0x45, 0x43, 0x49, 0x41, 0x4c, 0x5f, 0x46, 0x4c, 0x4f,
|
|
||||||
0x41, 0x54, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x03, 0x12, 0x2f, 0x0a,
|
|
||||||
0x2b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f,
|
|
||||||
0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x4f, 0x56,
|
|
||||||
0x45, 0x52, 0x52, 0x49, 0x44, 0x45, 0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x10, 0x04, 0x12, 0x35,
|
|
||||||
0x0a, 0x31, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45,
|
|
||||||
0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x43,
|
|
||||||
0x4c, 0x45, 0x41, 0x52, 0x5f, 0x4f, 0x56, 0x45, 0x52, 0x52, 0x49, 0x44, 0x45, 0x5f, 0x50, 0x41,
|
|
||||||
0x52, 0x41, 0x4d, 0x10, 0x05, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
|
|
||||||
0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54,
|
|
||||||
0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x52, 0x45, 0x49, 0x4e, 0x49, 0x54, 0x5f, 0x4f, 0x56, 0x45,
|
|
||||||
0x52, 0x52, 0x49, 0x44, 0x45, 0x4d, 0x41, 0x50, 0x10, 0x06, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x47, 0x4c, 0x4f, 0x42, 0x41,
|
|
||||||
0x4c, 0x5f, 0x46, 0x4c, 0x4f, 0x41, 0x54, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x07, 0x12,
|
|
||||||
0x39, 0x0a, 0x35, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b,
|
|
||||||
0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f,
|
|
||||||
0x43, 0x4c, 0x45, 0x41, 0x52, 0x5f, 0x47, 0x4c, 0x4f, 0x42, 0x41, 0x4c, 0x5f, 0x46, 0x4c, 0x4f,
|
|
||||||
0x41, 0x54, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x08, 0x12, 0x39, 0x0a, 0x35, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x41, 0x42, 0x49, 0x4c, 0x49,
|
|
||||||
0x54, 0x59, 0x5f, 0x45, 0x4c, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x53, 0x54, 0x52, 0x45, 0x4e,
|
|
||||||
0x47, 0x54, 0x48, 0x10, 0x09, 0x12, 0x3f, 0x0a, 0x3b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
|
|
||||||
0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54,
|
|
||||||
0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x41, 0x44, 0x44, 0x5f, 0x4f, 0x52, 0x5f, 0x47, 0x45, 0x54,
|
|
||||||
0x5f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x54, 0x52, 0x49,
|
|
||||||
0x47, 0x47, 0x45, 0x52, 0x10, 0x0a, 0x12, 0x31, 0x0a, 0x2d, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x4b, 0x49, 0x4c, 0x4c, 0x45,
|
|
||||||
0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x10, 0x0b, 0x12, 0x34, 0x0a, 0x30, 0x41, 0x42, 0x49,
|
|
||||||
0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55,
|
|
||||||
0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x54, 0x52, 0x49, 0x47, 0x47, 0x45, 0x52, 0x10, 0x0c, 0x12,
|
|
||||||
0x30, 0x0a, 0x2c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b,
|
|
||||||
0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f,
|
|
||||||
0x41, 0x44, 0x44, 0x5f, 0x4e, 0x45, 0x57, 0x5f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x10,
|
|
||||||
0x0d, 0x12, 0x2f, 0x0a, 0x2b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56,
|
|
||||||
0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54,
|
|
||||||
0x41, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x5f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
|
|
||||||
0x10, 0x0e, 0x12, 0x3a, 0x0a, 0x36, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e,
|
|
||||||
0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45,
|
|
||||||
0x54, 0x41, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x49, 0x45, 0x52, 0x5f,
|
|
||||||
0x41, 0x50, 0x50, 0x4c, 0x59, 0x5f, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x10, 0x0f, 0x12, 0x3b,
|
|
||||||
0x0a, 0x37, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45,
|
|
||||||
0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x4d,
|
|
||||||
0x4f, 0x44, 0x49, 0x46, 0x49, 0x45, 0x52, 0x5f, 0x44, 0x55, 0x52, 0x41, 0x42, 0x49, 0x4c, 0x49,
|
|
||||||
0x54, 0x59, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x10, 0x10, 0x12, 0x38, 0x0a, 0x34, 0x41,
|
|
||||||
0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52,
|
|
||||||
0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x45, 0x4c, 0x45, 0x4d,
|
|
||||||
0x45, 0x4e, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x56, 0x49, 0x53,
|
|
||||||
0x55, 0x41, 0x4c, 0x10, 0x11, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
|
|
||||||
0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54,
|
|
||||||
0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x50, 0x4f, 0x53, 0x45, 0x5f, 0x50,
|
|
||||||
0x41, 0x52, 0x41, 0x4d, 0x45, 0x54, 0x45, 0x52, 0x10, 0x12, 0x12, 0x3c, 0x0a, 0x38, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x55, 0x50, 0x44, 0x41, 0x54,
|
|
||||||
0x45, 0x5f, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, 0x45, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
|
|
||||||
0x44, 0x41, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x13, 0x12, 0x39, 0x0a, 0x35, 0x41, 0x42, 0x49, 0x4c,
|
|
||||||
0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d,
|
|
||||||
0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x54, 0x52, 0x49, 0x47, 0x47, 0x45, 0x52,
|
|
||||||
0x5f, 0x45, 0x4c, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x43, 0x54, 0x49, 0x4f,
|
|
||||||
0x4e, 0x10, 0x14, 0x12, 0x28, 0x0a, 0x24, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49,
|
|
||||||
0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d,
|
|
||||||
0x45, 0x54, 0x41, 0x5f, 0x4c, 0x4f, 0x53, 0x45, 0x5f, 0x48, 0x50, 0x10, 0x15, 0x12, 0x33, 0x0a,
|
|
||||||
0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f,
|
|
||||||
0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x5f, 0x44, 0x55,
|
|
||||||
0x52, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x53, 0x5f, 0x5a, 0x45, 0x52, 0x4f,
|
|
||||||
0x10, 0x16, 0x12, 0x32, 0x0a, 0x2e, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e,
|
|
||||||
0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43,
|
|
||||||
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x52, 0x49, 0x47, 0x47, 0x45, 0x52, 0x5f, 0x41, 0x42, 0x49,
|
|
||||||
0x4c, 0x49, 0x54, 0x59, 0x10, 0x32, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x43, 0x52, 0x41,
|
|
||||||
0x53, 0x48, 0x5f, 0x44, 0x41, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x33, 0x12, 0x29, 0x0a, 0x25, 0x41,
|
|
||||||
0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52,
|
|
||||||
0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x46,
|
|
||||||
0x46, 0x45, 0x43, 0x54, 0x10, 0x34, 0x12, 0x29, 0x0a, 0x25, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x55, 0x4d, 0x4d, 0x4f, 0x4e, 0x10,
|
|
||||||
0x35, 0x12, 0x28, 0x0a, 0x24, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56,
|
|
||||||
0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54,
|
|
||||||
0x49, 0x4f, 0x4e, 0x5f, 0x42, 0x4c, 0x49, 0x4e, 0x4b, 0x10, 0x36, 0x12, 0x30, 0x0a, 0x2c, 0x41,
|
|
||||||
0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52,
|
|
||||||
0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x52,
|
|
||||||
0x45, 0x41, 0x54, 0x45, 0x5f, 0x47, 0x41, 0x44, 0x47, 0x45, 0x54, 0x10, 0x37, 0x12, 0x37, 0x0a,
|
|
||||||
0x33, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f,
|
|
||||||
0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
|
|
||||||
0x41, 0x50, 0x50, 0x4c, 0x59, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x4d, 0x4f, 0x44, 0x49,
|
|
||||||
0x46, 0x49, 0x45, 0x52, 0x10, 0x38, 0x12, 0x35, 0x0a, 0x31, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54,
|
|
||||||
0x45, 0x5f, 0x45, 0x4c, 0x45, 0x4d, 0x5f, 0x42, 0x41, 0x4c, 0x4c, 0x10, 0x39, 0x12, 0x40, 0x0a,
|
|
||||||
0x3c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f,
|
|
||||||
0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
|
|
||||||
0x53, 0x45, 0x54, 0x5f, 0x52, 0x41, 0x4e, 0x44, 0x4f, 0x4d, 0x5f, 0x4f, 0x56, 0x45, 0x52, 0x52,
|
|
||||||
0x49, 0x44, 0x45, 0x5f, 0x4d, 0x41, 0x50, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x3a, 0x12,
|
|
||||||
0x35, 0x0a, 0x31, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b,
|
|
||||||
0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f,
|
|
||||||
0x4e, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x4e, 0x53, 0x54, 0x45, 0x52,
|
|
||||||
0x5f, 0x4c, 0x4f, 0x47, 0x10, 0x3b, 0x12, 0x2e, 0x0a, 0x2a, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x5f,
|
|
||||||
0x54, 0x49, 0x4c, 0x45, 0x10, 0x3c, 0x12, 0x2f, 0x0a, 0x2b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x45, 0x53, 0x54, 0x52, 0x4f, 0x59,
|
|
||||||
0x5f, 0x54, 0x49, 0x4c, 0x45, 0x10, 0x3d, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49,
|
|
||||||
0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45,
|
|
||||||
0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x49, 0x52, 0x45, 0x5f, 0x41,
|
|
||||||
0x46, 0x54, 0x45, 0x52, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x3e, 0x12, 0x31, 0x0a, 0x2d,
|
|
||||||
0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41,
|
|
||||||
0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x44,
|
|
||||||
0x45, 0x44, 0x55, 0x43, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x4d, 0x49, 0x4e, 0x41, 0x10, 0x3f, 0x12,
|
|
||||||
0x2d, 0x0a, 0x29, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b,
|
|
||||||
0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f,
|
|
||||||
0x4e, 0x5f, 0x48, 0x49, 0x54, 0x5f, 0x45, 0x46, 0x46, 0x45, 0x43, 0x54, 0x10, 0x40, 0x12, 0x3a,
|
|
||||||
0x0a, 0x36, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45,
|
|
||||||
0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e,
|
|
||||||
0x5f, 0x53, 0x45, 0x54, 0x5f, 0x42, 0x55, 0x4c, 0x4c, 0x45, 0x54, 0x5f, 0x54, 0x52, 0x41, 0x43,
|
|
||||||
0x4b, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x10, 0x41, 0x12, 0x38, 0x0a, 0x34, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x41, 0x56, 0x41, 0x54,
|
|
||||||
0x41, 0x52, 0x5f, 0x53, 0x54, 0x45, 0x45, 0x52, 0x5f, 0x42, 0x59, 0x5f, 0x43, 0x41, 0x4d, 0x45,
|
|
||||||
0x52, 0x41, 0x10, 0x64, 0x12, 0x30, 0x0a, 0x2c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f,
|
|
||||||
0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f,
|
|
||||||
0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x4d, 0x4f, 0x4e, 0x53, 0x54, 0x45, 0x52, 0x5f, 0x44, 0x45,
|
|
||||||
0x46, 0x45, 0x4e, 0x44, 0x10, 0x65, 0x12, 0x2b, 0x0a, 0x27, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x57, 0x49, 0x4e, 0x44, 0x5f, 0x5a, 0x4f, 0x4e,
|
|
||||||
0x45, 0x10, 0x66, 0x12, 0x2e, 0x0a, 0x2a, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49,
|
|
||||||
0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d,
|
|
||||||
0x49, 0x58, 0x49, 0x4e, 0x5f, 0x43, 0x4f, 0x53, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x4d, 0x49, 0x4e,
|
|
||||||
0x41, 0x10, 0x67, 0x12, 0x2e, 0x0a, 0x2a, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49,
|
|
||||||
0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d,
|
|
||||||
0x49, 0x58, 0x49, 0x4e, 0x5f, 0x45, 0x4c, 0x49, 0x54, 0x45, 0x5f, 0x53, 0x48, 0x49, 0x45, 0x4c,
|
|
||||||
0x44, 0x10, 0x68, 0x12, 0x30, 0x0a, 0x2c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49,
|
|
||||||
0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d,
|
|
||||||
0x49, 0x58, 0x49, 0x4e, 0x5f, 0x45, 0x4c, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x53, 0x48, 0x49,
|
|
||||||
0x45, 0x4c, 0x44, 0x10, 0x69, 0x12, 0x2f, 0x0a, 0x2b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
|
|
||||||
0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54,
|
|
||||||
0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x47, 0x4c, 0x4f, 0x42, 0x41, 0x4c, 0x5f, 0x53, 0x48,
|
|
||||||
0x49, 0x45, 0x4c, 0x44, 0x10, 0x6a, 0x12, 0x2c, 0x0a, 0x28, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x53, 0x48, 0x49, 0x45, 0x4c, 0x44, 0x5f, 0x42,
|
|
||||||
0x41, 0x52, 0x10, 0x6b, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f,
|
|
||||||
0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f,
|
|
||||||
0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x57, 0x49, 0x4e, 0x44, 0x5f, 0x53, 0x45, 0x45, 0x44, 0x5f,
|
|
||||||
0x53, 0x50, 0x41, 0x57, 0x4e, 0x45, 0x52, 0x10, 0x6c, 0x12, 0x3f, 0x0a, 0x3b, 0x41, 0x42, 0x49,
|
|
||||||
0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55,
|
|
||||||
0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x44, 0x4f, 0x5f, 0x41, 0x43,
|
|
||||||
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x42, 0x59, 0x5f, 0x45, 0x4c, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x5f,
|
|
||||||
0x52, 0x45, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x6d, 0x12, 0x3b, 0x0a, 0x37, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x46, 0x49, 0x45, 0x4c,
|
|
||||||
0x44, 0x5f, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x5f, 0x43,
|
|
||||||
0x48, 0x41, 0x4e, 0x47, 0x45, 0x10, 0x6e, 0x12, 0x31, 0x0a, 0x2d, 0x41, 0x42, 0x49, 0x4c, 0x49,
|
|
||||||
0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45,
|
|
||||||
0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x53, 0x43, 0x45, 0x4e, 0x45, 0x5f, 0x50,
|
|
||||||
0x52, 0x4f, 0x50, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x6f, 0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x57, 0x49, 0x44, 0x47,
|
|
||||||
0x45, 0x54, 0x5f, 0x4d, 0x50, 0x5f, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x10, 0x70, 0x12,
|
|
||||||
0x55, 0x0a, 0x51, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b,
|
|
||||||
0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e,
|
|
||||||
0x5f, 0x44, 0x4f, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x42, 0x59, 0x5f, 0x53, 0x45,
|
|
||||||
0x4c, 0x46, 0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x49, 0x45, 0x52, 0x5f, 0x45, 0x4c, 0x45, 0x4d,
|
|
||||||
0x45, 0x4e, 0x54, 0x5f, 0x44, 0x55, 0x52, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x52,
|
|
||||||
0x41, 0x54, 0x49, 0x4f, 0x10, 0x71, 0x12, 0x34, 0x0a, 0x30, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e,
|
|
||||||
0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x46, 0x49, 0x52, 0x45, 0x57, 0x4f, 0x52, 0x4b,
|
|
||||||
0x53, 0x5f, 0x4c, 0x41, 0x55, 0x4e, 0x43, 0x48, 0x45, 0x52, 0x10, 0x72, 0x12, 0x3c, 0x0a, 0x38,
|
|
||||||
0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41,
|
|
||||||
0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x41, 0x54,
|
|
||||||
0x54, 0x41, 0x43, 0x4b, 0x5f, 0x52, 0x45, 0x53, 0x55, 0x4c, 0x54, 0x5f, 0x43, 0x52, 0x45, 0x41,
|
|
||||||
0x54, 0x45, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x10, 0x73, 0x12, 0x32, 0x0a, 0x2e, 0x41, 0x42,
|
|
||||||
0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47,
|
|
||||||
0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x55, 0x47, 0x43, 0x5f,
|
|
||||||
0x54, 0x49, 0x4d, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x52, 0x4f, 0x4c, 0x10, 0x74, 0x12, 0x2f,
|
|
||||||
0x0a, 0x2b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45,
|
|
||||||
0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f,
|
|
||||||
0x41, 0x56, 0x41, 0x54, 0x41, 0x52, 0x5f, 0x43, 0x4f, 0x4d, 0x42, 0x41, 0x54, 0x10, 0x75, 0x12,
|
|
||||||
0x40, 0x0a, 0x3c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b,
|
|
||||||
0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e,
|
|
||||||
0x5f, 0x44, 0x45, 0x41, 0x54, 0x48, 0x5f, 0x5a, 0x4f, 0x4e, 0x45, 0x5f, 0x52, 0x45, 0x47, 0x49,
|
|
||||||
0x4f, 0x4e, 0x41, 0x4c, 0x5f, 0x50, 0x4c, 0x41, 0x59, 0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x10,
|
|
||||||
0x76, 0x12, 0x2d, 0x0a, 0x29, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56,
|
|
||||||
0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58,
|
|
||||||
0x49, 0x4e, 0x5f, 0x55, 0x49, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x41, 0x43, 0x54, 0x10, 0x77,
|
|
||||||
0x12, 0x33, 0x0a, 0x2f, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x4e, 0x56, 0x4f,
|
|
||||||
0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x49, 0x58, 0x49,
|
|
||||||
0x4e, 0x5f, 0x53, 0x48, 0x4f, 0x4f, 0x54, 0x5f, 0x46, 0x52, 0x4f, 0x4d, 0x5f, 0x43, 0x41, 0x4d,
|
|
||||||
0x45, 0x52, 0x41, 0x10, 0x78, 0x12, 0x36, 0x0a, 0x32, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
|
|
||||||
0x5f, 0x49, 0x4e, 0x56, 0x4f, 0x4b, 0x45, 0x5f, 0x41, 0x52, 0x47, 0x55, 0x4d, 0x45, 0x4e, 0x54,
|
|
||||||
0x5f, 0x4d, 0x49, 0x58, 0x49, 0x4e, 0x5f, 0x45, 0x52, 0x41, 0x53, 0x45, 0x5f, 0x42, 0x52, 0x49,
|
|
||||||
0x43, 0x4b, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x49, 0x54, 0x59, 0x10, 0x79, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityInvokeArgument_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityInvokeArgument_proto_rawDescData = file_AbilityInvokeArgument_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityInvokeArgument_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityInvokeArgument_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityInvokeArgument_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityInvokeArgument_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityInvokeArgument_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityInvokeArgument_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
||||||
var file_AbilityInvokeArgument_proto_goTypes = []interface{}{
|
|
||||||
(AbilityInvokeArgument)(0), // 0: proto.AbilityInvokeArgument
|
|
||||||
}
|
|
||||||
var file_AbilityInvokeArgument_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityInvokeArgument_proto_init() }
|
|
||||||
func file_AbilityInvokeArgument_proto_init() {
|
|
||||||
if File_AbilityInvokeArgument_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityInvokeArgument_proto_rawDesc,
|
|
||||||
NumEnums: 1,
|
|
||||||
NumMessages: 0,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityInvokeArgument_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityInvokeArgument_proto_depIdxs,
|
|
||||||
EnumInfos: file_AbilityInvokeArgument_proto_enumTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityInvokeArgument_proto = out.File
|
|
||||||
file_AbilityInvokeArgument_proto_rawDesc = nil
|
|
||||||
file_AbilityInvokeArgument_proto_goTypes = nil
|
|
||||||
file_AbilityInvokeArgument_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,248 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityInvokeEntry.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityInvokeEntry struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ArgumentType AbilityInvokeArgument `protobuf:"varint,1,opt,name=argument_type,json=argumentType,proto3,enum=proto.AbilityInvokeArgument" json:"argument_type,omitempty"`
|
|
||||||
Head *AbilityInvokeEntryHead `protobuf:"bytes,2,opt,name=head,proto3" json:"head,omitempty"`
|
|
||||||
ForwardPeer uint32 `protobuf:"varint,4,opt,name=forward_peer,json=forwardPeer,proto3" json:"forward_peer,omitempty"`
|
|
||||||
EventId uint32 `protobuf:"varint,12,opt,name=event_id,json=eventId,proto3" json:"event_id,omitempty"`
|
|
||||||
ForwardType ForwardType `protobuf:"varint,3,opt,name=forward_type,json=forwardType,proto3,enum=proto.ForwardType" json:"forward_type,omitempty"`
|
|
||||||
AbilityData []byte `protobuf:"bytes,15,opt,name=ability_data,json=abilityData,proto3" json:"ability_data,omitempty"`
|
|
||||||
TotalTickTime float64 `protobuf:"fixed64,14,opt,name=total_tick_time,json=totalTickTime,proto3" json:"total_tick_time,omitempty"`
|
|
||||||
EntityId uint32 `protobuf:"varint,9,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) Reset() {
|
|
||||||
*x = AbilityInvokeEntry{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityInvokeEntry_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityInvokeEntry) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityInvokeEntry_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityInvokeEntry.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityInvokeEntry) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityInvokeEntry_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetArgumentType() AbilityInvokeArgument {
|
|
||||||
if x != nil {
|
|
||||||
return x.ArgumentType
|
|
||||||
}
|
|
||||||
return AbilityInvokeArgument_ABILITY_INVOKE_ARGUMENT_NONE
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetHead() *AbilityInvokeEntryHead {
|
|
||||||
if x != nil {
|
|
||||||
return x.Head
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetForwardPeer() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ForwardPeer
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetEventId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EventId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetForwardType() ForwardType {
|
|
||||||
if x != nil {
|
|
||||||
return x.ForwardType
|
|
||||||
}
|
|
||||||
return ForwardType_FORWARD_TYPE_LOCAL
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetAbilityData() []byte {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityData
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetTotalTickTime() float64 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TotalTickTime
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntry) GetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityInvokeEntry_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityInvokeEntry_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x18, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x1a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65,
|
|
||||||
0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74,
|
|
||||||
0x72, 0x79, 0x48, 0x65, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x46, 0x6f,
|
|
||||||
0x72, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
|
|
||||||
0xe7, 0x02, 0x0a, 0x12, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b,
|
|
||||||
0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x41, 0x0a, 0x0d, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65,
|
|
||||||
0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1c, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76,
|
|
||||||
0x6f, 0x6b, 0x65, 0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0c, 0x61, 0x72, 0x67,
|
|
||||||
0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x31, 0x0a, 0x04, 0x68, 0x65, 0x61,
|
|
||||||
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74,
|
|
||||||
0x72, 0x79, 0x48, 0x65, 0x61, 0x64, 0x52, 0x04, 0x68, 0x65, 0x61, 0x64, 0x12, 0x21, 0x0a, 0x0c,
|
|
||||||
0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x0b, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x50, 0x65, 0x65, 0x72, 0x12,
|
|
||||||
0x19, 0x0a, 0x08, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x35, 0x0a, 0x0c, 0x66, 0x6f,
|
|
||||||
0x72, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e,
|
|
||||||
0x32, 0x12, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x46, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64,
|
|
||||||
0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70,
|
|
||||||
0x65, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x64, 0x61, 0x74,
|
|
||||||
0x61, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x44, 0x61, 0x74, 0x61, 0x12, 0x26, 0x0a, 0x0f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x74, 0x69,
|
|
||||||
0x63, 0x6b, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x74,
|
|
||||||
0x6f, 0x74, 0x61, 0x6c, 0x54, 0x69, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09,
|
|
||||||
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityInvokeEntry_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityInvokeEntry_proto_rawDescData = file_AbilityInvokeEntry_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityInvokeEntry_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityInvokeEntry_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityInvokeEntry_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityInvokeEntry_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityInvokeEntry_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityInvokeEntry_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityInvokeEntry_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityInvokeEntry)(nil), // 0: proto.AbilityInvokeEntry
|
|
||||||
(AbilityInvokeArgument)(0), // 1: proto.AbilityInvokeArgument
|
|
||||||
(*AbilityInvokeEntryHead)(nil), // 2: proto.AbilityInvokeEntryHead
|
|
||||||
(ForwardType)(0), // 3: proto.ForwardType
|
|
||||||
}
|
|
||||||
var file_AbilityInvokeEntry_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityInvokeEntry.argument_type:type_name -> proto.AbilityInvokeArgument
|
|
||||||
2, // 1: proto.AbilityInvokeEntry.head:type_name -> proto.AbilityInvokeEntryHead
|
|
||||||
3, // 2: proto.AbilityInvokeEntry.forward_type:type_name -> proto.ForwardType
|
|
||||||
3, // [3:3] is the sub-list for method output_type
|
|
||||||
3, // [3:3] is the sub-list for method input_type
|
|
||||||
3, // [3:3] is the sub-list for extension type_name
|
|
||||||
3, // [3:3] is the sub-list for extension extendee
|
|
||||||
0, // [0:3] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityInvokeEntry_proto_init() }
|
|
||||||
func file_AbilityInvokeEntry_proto_init() {
|
|
||||||
if File_AbilityInvokeEntry_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityInvokeArgument_proto_init()
|
|
||||||
file_AbilityInvokeEntryHead_proto_init()
|
|
||||||
file_ForwardType_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityInvokeEntry_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityInvokeEntry); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityInvokeEntry_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityInvokeEntry_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityInvokeEntry_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityInvokeEntry_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityInvokeEntry_proto = out.File
|
|
||||||
file_AbilityInvokeEntry_proto_rawDesc = nil
|
|
||||||
file_AbilityInvokeEntry_proto_goTypes = nil
|
|
||||||
file_AbilityInvokeEntry_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,225 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityInvokeEntryHead.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityInvokeEntryHead struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ModifierConfigLocalId int32 `protobuf:"varint,7,opt,name=modifier_config_local_id,json=modifierConfigLocalId,proto3" json:"modifier_config_local_id,omitempty"`
|
|
||||||
IsServerbuffModifier bool `protobuf:"varint,2,opt,name=is_serverbuff_modifier,json=isServerbuffModifier,proto3" json:"is_serverbuff_modifier,omitempty"`
|
|
||||||
InstancedAbilityId uint32 `protobuf:"varint,1,opt,name=instanced_ability_id,json=instancedAbilityId,proto3" json:"instanced_ability_id,omitempty"`
|
|
||||||
InstancedModifierId uint32 `protobuf:"varint,12,opt,name=instanced_modifier_id,json=instancedModifierId,proto3" json:"instanced_modifier_id,omitempty"`
|
|
||||||
LocalId int32 `protobuf:"varint,10,opt,name=local_id,json=localId,proto3" json:"local_id,omitempty"`
|
|
||||||
ServerBuffUid uint32 `protobuf:"varint,14,opt,name=server_buff_uid,json=serverBuffUid,proto3" json:"server_buff_uid,omitempty"`
|
|
||||||
TargetId uint32 `protobuf:"varint,3,opt,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) Reset() {
|
|
||||||
*x = AbilityInvokeEntryHead{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityInvokeEntryHead_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityInvokeEntryHead) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityInvokeEntryHead_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityInvokeEntryHead.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityInvokeEntryHead) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityInvokeEntryHead_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetModifierConfigLocalId() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ModifierConfigLocalId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetIsServerbuffModifier() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsServerbuffModifier
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetInstancedAbilityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedAbilityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetInstancedModifierId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InstancedModifierId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetLocalId() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.LocalId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetServerBuffUid() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ServerBuffUid
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityInvokeEntryHead) GetTargetId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TargetId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityInvokeEntryHead_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityInvokeEntryHead_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x48, 0x65, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xcd, 0x02, 0x0a, 0x16, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x49, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x48, 0x65, 0x61, 0x64,
|
|
||||||
0x12, 0x37, 0x0a, 0x18, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e,
|
|
||||||
0x66, 0x69, 0x67, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01,
|
|
||||||
0x28, 0x05, 0x52, 0x15, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66,
|
|
||||||
0x69, 0x67, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x34, 0x0a, 0x16, 0x69, 0x73, 0x5f,
|
|
||||||
0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x73, 0x53, 0x65, 0x72,
|
|
||||||
0x76, 0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12,
|
|
||||||
0x30, 0x0a, 0x14, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x61, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69,
|
|
||||||
0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49,
|
|
||||||
0x64, 0x12, 0x32, 0x0a, 0x15, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x6d,
|
|
||||||
0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x13, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x69,
|
|
||||||
0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64,
|
|
||||||
0x12, 0x26, 0x0a, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x62, 0x75, 0x66, 0x66, 0x5f,
|
|
||||||
0x75, 0x69, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x65,
|
|
||||||
0x72, 0x42, 0x75, 0x66, 0x66, 0x55, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x61, 0x72, 0x67,
|
|
||||||
0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x74, 0x61, 0x72,
|
|
||||||
0x67, 0x65, 0x74, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityInvokeEntryHead_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityInvokeEntryHead_proto_rawDescData = file_AbilityInvokeEntryHead_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityInvokeEntryHead_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityInvokeEntryHead_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityInvokeEntryHead_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityInvokeEntryHead_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityInvokeEntryHead_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityInvokeEntryHead_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityInvokeEntryHead_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityInvokeEntryHead)(nil), // 0: proto.AbilityInvokeEntryHead
|
|
||||||
}
|
|
||||||
var file_AbilityInvokeEntryHead_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityInvokeEntryHead_proto_init() }
|
|
||||||
func file_AbilityInvokeEntryHead_proto_init() {
|
|
||||||
if File_AbilityInvokeEntryHead_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityInvokeEntryHead_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityInvokeEntryHead); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityInvokeEntryHead_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityInvokeEntryHead_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityInvokeEntryHead_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityInvokeEntryHead_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityInvokeEntryHead_proto = out.File
|
|
||||||
file_AbilityInvokeEntryHead_proto_rawDesc = nil
|
|
||||||
file_AbilityInvokeEntryHead_proto_goTypes = nil
|
|
||||||
file_AbilityInvokeEntryHead_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,166 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaAddAbility.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaAddAbility struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Ability *AbilityAppliedAbility `protobuf:"bytes,12,opt,name=ability,proto3" json:"ability,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddAbility) Reset() {
|
|
||||||
*x = AbilityMetaAddAbility{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaAddAbility_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddAbility) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaAddAbility) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddAbility) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaAddAbility_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaAddAbility.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaAddAbility) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaAddAbility_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddAbility) GetAbility() *AbilityAppliedAbility {
|
|
||||||
if x != nil {
|
|
||||||
return x.Ability
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaAddAbility_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaAddAbility_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x41, 0x64, 0x64,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70,
|
|
||||||
0x6c, 0x69, 0x65, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x22, 0x4f, 0x0a, 0x15, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61,
|
|
||||||
0x41, 0x64, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x36, 0x0a, 0x07, 0x61, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69,
|
|
||||||
0x65, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x07, 0x61, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaAddAbility_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaAddAbility_proto_rawDescData = file_AbilityMetaAddAbility_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaAddAbility_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaAddAbility_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaAddAbility_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaAddAbility_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaAddAbility_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaAddAbility_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaAddAbility_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaAddAbility)(nil), // 0: proto.AbilityMetaAddAbility
|
|
||||||
(*AbilityAppliedAbility)(nil), // 1: proto.AbilityAppliedAbility
|
|
||||||
}
|
|
||||||
var file_AbilityMetaAddAbility_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMetaAddAbility.ability:type_name -> proto.AbilityAppliedAbility
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaAddAbility_proto_init() }
|
|
||||||
func file_AbilityMetaAddAbility_proto_init() {
|
|
||||||
if File_AbilityMetaAddAbility_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityAppliedAbility_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaAddAbility_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaAddAbility); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaAddAbility_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaAddAbility_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaAddAbility_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaAddAbility_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaAddAbility_proto = out.File
|
|
||||||
file_AbilityMetaAddAbility_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaAddAbility_proto_goTypes = nil
|
|
||||||
file_AbilityMetaAddAbility_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,191 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaAddOrGetAbilityAndTrigger.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaAddOrGetAbilityAndTrigger struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AbilityName *AbilityString `protobuf:"bytes,13,opt,name=ability_name,json=abilityName,proto3" json:"ability_name,omitempty"`
|
|
||||||
TriggerArgument float32 `protobuf:"fixed32,3,opt,name=trigger_argument,json=triggerArgument,proto3" json:"trigger_argument,omitempty"`
|
|
||||||
AbilityOverride *AbilityString `protobuf:"bytes,8,opt,name=ability_override,json=abilityOverride,proto3" json:"ability_override,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddOrGetAbilityAndTrigger) Reset() {
|
|
||||||
*x = AbilityMetaAddOrGetAbilityAndTrigger{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaAddOrGetAbilityAndTrigger_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddOrGetAbilityAndTrigger) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaAddOrGetAbilityAndTrigger) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddOrGetAbilityAndTrigger) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaAddOrGetAbilityAndTrigger_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaAddOrGetAbilityAndTrigger.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaAddOrGetAbilityAndTrigger) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddOrGetAbilityAndTrigger) GetAbilityName() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityName
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddOrGetAbilityAndTrigger) GetTriggerArgument() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TriggerArgument
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaAddOrGetAbilityAndTrigger) GetAbilityOverride() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityOverride
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaAddOrGetAbilityAndTrigger_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x2a, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x41, 0x64, 0x64,
|
|
||||||
0x4f, 0x72, 0x47, 0x65, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x6e, 0x64, 0x54,
|
|
||||||
0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69,
|
|
||||||
0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xcb, 0x01, 0x0a, 0x24, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x41, 0x64, 0x64, 0x4f, 0x72, 0x47, 0x65, 0x74,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x6e, 0x64, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65,
|
|
||||||
0x72, 0x12, 0x37, 0x0a, 0x0c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
|
|
||||||
0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0b, 0x61,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x74, 0x72,
|
|
||||||
0x69, 0x67, 0x67, 0x65, 0x72, 0x5f, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x03,
|
|
||||||
0x20, 0x01, 0x28, 0x02, 0x52, 0x0f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x41, 0x72, 0x67,
|
|
||||||
0x75, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x3f, 0x0a, 0x10, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
||||||
0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53,
|
|
||||||
0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4f, 0x76,
|
|
||||||
0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescData = file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaAddOrGetAbilityAndTrigger_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaAddOrGetAbilityAndTrigger_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaAddOrGetAbilityAndTrigger)(nil), // 0: proto.AbilityMetaAddOrGetAbilityAndTrigger
|
|
||||||
(*AbilityString)(nil), // 1: proto.AbilityString
|
|
||||||
}
|
|
||||||
var file_AbilityMetaAddOrGetAbilityAndTrigger_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMetaAddOrGetAbilityAndTrigger.ability_name:type_name -> proto.AbilityString
|
|
||||||
1, // 1: proto.AbilityMetaAddOrGetAbilityAndTrigger.ability_override:type_name -> proto.AbilityString
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaAddOrGetAbilityAndTrigger_proto_init() }
|
|
||||||
func file_AbilityMetaAddOrGetAbilityAndTrigger_proto_init() {
|
|
||||||
if File_AbilityMetaAddOrGetAbilityAndTrigger_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityString_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaAddOrGetAbilityAndTrigger); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaAddOrGetAbilityAndTrigger_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaAddOrGetAbilityAndTrigger_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaAddOrGetAbilityAndTrigger_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaAddOrGetAbilityAndTrigger_proto = out.File
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_goTypes = nil
|
|
||||||
file_AbilityMetaAddOrGetAbilityAndTrigger_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaDurabilityIsZero.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaDurabilityIsZero struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsZero bool `protobuf:"varint,5,opt,name=is_zero,json=isZero,proto3" json:"is_zero,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaDurabilityIsZero) Reset() {
|
|
||||||
*x = AbilityMetaDurabilityIsZero{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaDurabilityIsZero_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaDurabilityIsZero) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaDurabilityIsZero) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaDurabilityIsZero) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaDurabilityIsZero_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaDurabilityIsZero.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaDurabilityIsZero) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaDurabilityIsZero_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaDurabilityIsZero) GetIsZero() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsZero
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaDurabilityIsZero_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaDurabilityIsZero_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x44, 0x75, 0x72,
|
|
||||||
0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x73, 0x5a, 0x65, 0x72, 0x6f, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x36, 0x0a, 0x1b, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x49, 0x73, 0x5a, 0x65, 0x72, 0x6f, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f,
|
|
||||||
0x7a, 0x65, 0x72, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x5a, 0x65,
|
|
||||||
0x72, 0x6f, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_rawDescData = file_AbilityMetaDurabilityIsZero_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaDurabilityIsZero_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaDurabilityIsZero_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaDurabilityIsZero_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaDurabilityIsZero_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaDurabilityIsZero_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaDurabilityIsZero)(nil), // 0: proto.AbilityMetaDurabilityIsZero
|
|
||||||
}
|
|
||||||
var file_AbilityMetaDurabilityIsZero_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaDurabilityIsZero_proto_init() }
|
|
||||||
func file_AbilityMetaDurabilityIsZero_proto_init() {
|
|
||||||
if File_AbilityMetaDurabilityIsZero_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaDurabilityIsZero); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaDurabilityIsZero_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaDurabilityIsZero_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaDurabilityIsZero_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaDurabilityIsZero_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaDurabilityIsZero_proto = out.File
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_goTypes = nil
|
|
||||||
file_AbilityMetaDurabilityIsZero_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,194 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaElementReactionVisual.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaElementReactionVisual struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
HitIndex int32 `protobuf:"varint,2,opt,name=hit_index,json=hitIndex,proto3" json:"hit_index,omitempty"`
|
|
||||||
ElementSourceType uint32 `protobuf:"varint,12,opt,name=element_source_type,json=elementSourceType,proto3" json:"element_source_type,omitempty"`
|
|
||||||
ElementReactorType uint32 `protobuf:"varint,6,opt,name=element_reactor_type,json=elementReactorType,proto3" json:"element_reactor_type,omitempty"`
|
|
||||||
ElementReactionType uint32 `protobuf:"varint,5,opt,name=element_reaction_type,json=elementReactionType,proto3" json:"element_reaction_type,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) Reset() {
|
|
||||||
*x = AbilityMetaElementReactionVisual{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaElementReactionVisual_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaElementReactionVisual) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaElementReactionVisual_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaElementReactionVisual.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaElementReactionVisual) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaElementReactionVisual_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) GetHitIndex() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.HitIndex
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) GetElementSourceType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementSourceType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) GetElementReactorType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementReactorType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaElementReactionVisual) GetElementReactionType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementReactionType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaElementReactionVisual_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaElementReactionVisual_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x26, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x45, 0x6c, 0x65,
|
|
||||||
0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x73, 0x75,
|
|
||||||
0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
|
|
||||||
0xd5, 0x01, 0x0a, 0x20, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x45,
|
|
||||||
0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69,
|
|
||||||
0x73, 0x75, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x68, 0x69, 0x74, 0x5f, 0x69, 0x6e, 0x64, 0x65,
|
|
||||||
0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x68, 0x69, 0x74, 0x49, 0x6e, 0x64, 0x65,
|
|
||||||
0x78, 0x12, 0x2e, 0x0a, 0x13, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x6f, 0x75,
|
|
||||||
0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x11,
|
|
||||||
0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70,
|
|
||||||
0x65, 0x12, 0x30, 0x0a, 0x14, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61,
|
|
||||||
0x63, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x12, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54,
|
|
||||||
0x79, 0x70, 0x65, 0x12, 0x32, 0x0a, 0x15, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72,
|
|
||||||
0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x13, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_rawDescData = file_AbilityMetaElementReactionVisual_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaElementReactionVisual_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaElementReactionVisual_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaElementReactionVisual_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaElementReactionVisual_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaElementReactionVisual_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaElementReactionVisual)(nil), // 0: proto.AbilityMetaElementReactionVisual
|
|
||||||
}
|
|
||||||
var file_AbilityMetaElementReactionVisual_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaElementReactionVisual_proto_init() }
|
|
||||||
func file_AbilityMetaElementReactionVisual_proto_init() {
|
|
||||||
if File_AbilityMetaElementReactionVisual_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaElementReactionVisual); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaElementReactionVisual_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaElementReactionVisual_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaElementReactionVisual_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaElementReactionVisual_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaElementReactionVisual_proto = out.File
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_goTypes = nil
|
|
||||||
file_AbilityMetaElementReactionVisual_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaLoseHp.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaLoseHp struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
LoseHpConfigIdx uint32 `protobuf:"varint,10,opt,name=lose_hp_config_idx,json=loseHpConfigIdx,proto3" json:"lose_hp_config_idx,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaLoseHp) Reset() {
|
|
||||||
*x = AbilityMetaLoseHp{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaLoseHp_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaLoseHp) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaLoseHp) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaLoseHp) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaLoseHp_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaLoseHp.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaLoseHp) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaLoseHp_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaLoseHp) GetLoseHpConfigIdx() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.LoseHpConfigIdx
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaLoseHp_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaLoseHp_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x4c, 0x6f, 0x73,
|
|
||||||
0x65, 0x48, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x40, 0x0a, 0x11, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x4c,
|
|
||||||
0x6f, 0x73, 0x65, 0x48, 0x70, 0x12, 0x2b, 0x0a, 0x12, 0x6c, 0x6f, 0x73, 0x65, 0x5f, 0x68, 0x70,
|
|
||||||
0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x78, 0x18, 0x0a, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x0f, 0x6c, 0x6f, 0x73, 0x65, 0x48, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49,
|
|
||||||
0x64, 0x78, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaLoseHp_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaLoseHp_proto_rawDescData = file_AbilityMetaLoseHp_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaLoseHp_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaLoseHp_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaLoseHp_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaLoseHp_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaLoseHp_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaLoseHp_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaLoseHp_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaLoseHp)(nil), // 0: proto.AbilityMetaLoseHp
|
|
||||||
}
|
|
||||||
var file_AbilityMetaLoseHp_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaLoseHp_proto_init() }
|
|
||||||
func file_AbilityMetaLoseHp_proto_init() {
|
|
||||||
if File_AbilityMetaLoseHp_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaLoseHp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaLoseHp); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaLoseHp_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaLoseHp_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaLoseHp_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaLoseHp_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaLoseHp_proto = out.File
|
|
||||||
file_AbilityMetaLoseHp_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaLoseHp_proto_goTypes = nil
|
|
||||||
file_AbilityMetaLoseHp_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,296 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaModifierChange.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaModifierChange struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AttachedInstancedModifier *AbilityAttachedModifier `protobuf:"bytes,7,opt,name=attached_instanced_modifier,json=attachedInstancedModifier,proto3" json:"attached_instanced_modifier,omitempty"`
|
|
||||||
ServerBuffUid uint32 `protobuf:"varint,4,opt,name=server_buff_uid,json=serverBuffUid,proto3" json:"server_buff_uid,omitempty"`
|
|
||||||
IsAttachedParentAbility bool `protobuf:"varint,10,opt,name=is_attached_parent_ability,json=isAttachedParentAbility,proto3" json:"is_attached_parent_ability,omitempty"`
|
|
||||||
Action ModifierAction `protobuf:"varint,13,opt,name=action,proto3,enum=proto.ModifierAction" json:"action,omitempty"`
|
|
||||||
ModifierLocalId int32 `protobuf:"varint,2,opt,name=modifier_local_id,json=modifierLocalId,proto3" json:"modifier_local_id,omitempty"`
|
|
||||||
ParentAbilityName *AbilityString `protobuf:"bytes,1,opt,name=parent_ability_name,json=parentAbilityName,proto3" json:"parent_ability_name,omitempty"`
|
|
||||||
IsMuteRemote bool `protobuf:"varint,6,opt,name=is_mute_remote,json=isMuteRemote,proto3" json:"is_mute_remote,omitempty"`
|
|
||||||
ApplyEntityId uint32 `protobuf:"varint,5,opt,name=apply_entity_id,json=applyEntityId,proto3" json:"apply_entity_id,omitempty"`
|
|
||||||
Properties []*ModifierProperty `protobuf:"bytes,3,rep,name=properties,proto3" json:"properties,omitempty"`
|
|
||||||
ParentAbilityOverride *AbilityString `protobuf:"bytes,11,opt,name=parent_ability_override,json=parentAbilityOverride,proto3" json:"parent_ability_override,omitempty"`
|
|
||||||
IsDurabilityZero bool `protobuf:"varint,9,opt,name=is_durability_zero,json=isDurabilityZero,proto3" json:"is_durability_zero,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) Reset() {
|
|
||||||
*x = AbilityMetaModifierChange{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaModifierChange_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaModifierChange) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaModifierChange_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaModifierChange.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaModifierChange) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaModifierChange_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetAttachedInstancedModifier() *AbilityAttachedModifier {
|
|
||||||
if x != nil {
|
|
||||||
return x.AttachedInstancedModifier
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetServerBuffUid() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ServerBuffUid
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetIsAttachedParentAbility() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsAttachedParentAbility
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetAction() ModifierAction {
|
|
||||||
if x != nil {
|
|
||||||
return x.Action
|
|
||||||
}
|
|
||||||
return ModifierAction_MODIFIER_ACTION_ADDED
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetModifierLocalId() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ModifierLocalId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetParentAbilityName() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.ParentAbilityName
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetIsMuteRemote() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsMuteRemote
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetApplyEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ApplyEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetProperties() []*ModifierProperty {
|
|
||||||
if x != nil {
|
|
||||||
return x.Properties
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetParentAbilityOverride() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.ParentAbilityOverride
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierChange) GetIsDurabilityZero() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsDurabilityZero
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaModifierChange_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaModifierChange_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x4d, 0x6f, 0x64,
|
|
||||||
0x69, 0x66, 0x69, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
|
|
||||||
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x14, 0x4d, 0x6f,
|
|
||||||
0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x1a, 0x16, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x70,
|
|
||||||
0x65, 0x72, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x84, 0x05, 0x0a, 0x19, 0x41,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69,
|
|
||||||
0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x5e, 0x0a, 0x1b, 0x61, 0x74, 0x74, 0x61,
|
|
||||||
0x63, 0x68, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x6d,
|
|
||||||
0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x74, 0x74,
|
|
||||||
0x61, 0x63, 0x68, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x19, 0x61,
|
|
||||||
0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64,
|
|
||||||
0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x65, 0x72, 0x76,
|
|
||||||
0x65, 0x72, 0x5f, 0x62, 0x75, 0x66, 0x66, 0x5f, 0x75, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x75, 0x66, 0x66, 0x55, 0x69, 0x64,
|
|
||||||
0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x73, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x5f,
|
|
||||||
0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0a,
|
|
||||||
0x20, 0x01, 0x28, 0x08, 0x52, 0x17, 0x69, 0x73, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64,
|
|
||||||
0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x2d, 0x0a,
|
|
||||||
0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x41, 0x63,
|
|
||||||
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x11,
|
|
||||||
0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x69,
|
|
||||||
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
|
|
||||||
0x72, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x44, 0x0a, 0x13, 0x70, 0x61, 0x72, 0x65,
|
|
||||||
0x6e, 0x74, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
||||||
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x11, 0x70, 0x61, 0x72,
|
|
||||||
0x65, 0x6e, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24,
|
|
||||||
0x0a, 0x0e, 0x69, 0x73, 0x5f, 0x6d, 0x75, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
|
|
||||||
0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x4d, 0x75, 0x74, 0x65, 0x52, 0x65,
|
|
||||||
0x6d, 0x6f, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x65, 0x6e,
|
|
||||||
0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x61,
|
|
||||||
0x70, 0x70, 0x6c, 0x79, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x0a,
|
|
||||||
0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
|
|
||||||
0x32, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
|
|
||||||
0x72, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65,
|
|
||||||
0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x4c, 0x0a, 0x17, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
|
|
||||||
0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65,
|
|
||||||
0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x15, 0x70, 0x61,
|
|
||||||
0x72, 0x65, 0x6e, 0x74, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4f, 0x76, 0x65, 0x72, 0x72,
|
|
||||||
0x69, 0x64, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x7a, 0x65, 0x72, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
||||||
0x10, 0x69, 0x73, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5a, 0x65, 0x72,
|
|
||||||
0x6f, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaModifierChange_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaModifierChange_proto_rawDescData = file_AbilityMetaModifierChange_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaModifierChange_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaModifierChange_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaModifierChange_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaModifierChange_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaModifierChange_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaModifierChange_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaModifierChange_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaModifierChange)(nil), // 0: proto.AbilityMetaModifierChange
|
|
||||||
(*AbilityAttachedModifier)(nil), // 1: proto.AbilityAttachedModifier
|
|
||||||
(ModifierAction)(0), // 2: proto.ModifierAction
|
|
||||||
(*AbilityString)(nil), // 3: proto.AbilityString
|
|
||||||
(*ModifierProperty)(nil), // 4: proto.ModifierProperty
|
|
||||||
}
|
|
||||||
var file_AbilityMetaModifierChange_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMetaModifierChange.attached_instanced_modifier:type_name -> proto.AbilityAttachedModifier
|
|
||||||
2, // 1: proto.AbilityMetaModifierChange.action:type_name -> proto.ModifierAction
|
|
||||||
3, // 2: proto.AbilityMetaModifierChange.parent_ability_name:type_name -> proto.AbilityString
|
|
||||||
4, // 3: proto.AbilityMetaModifierChange.properties:type_name -> proto.ModifierProperty
|
|
||||||
3, // 4: proto.AbilityMetaModifierChange.parent_ability_override:type_name -> proto.AbilityString
|
|
||||||
5, // [5:5] is the sub-list for method output_type
|
|
||||||
5, // [5:5] is the sub-list for method input_type
|
|
||||||
5, // [5:5] is the sub-list for extension type_name
|
|
||||||
5, // [5:5] is the sub-list for extension extendee
|
|
||||||
0, // [0:5] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaModifierChange_proto_init() }
|
|
||||||
func file_AbilityMetaModifierChange_proto_init() {
|
|
||||||
if File_AbilityMetaModifierChange_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityAttachedModifier_proto_init()
|
|
||||||
file_AbilityString_proto_init()
|
|
||||||
file_ModifierAction_proto_init()
|
|
||||||
file_ModifierProperty_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaModifierChange_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaModifierChange); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaModifierChange_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaModifierChange_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaModifierChange_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaModifierChange_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaModifierChange_proto = out.File
|
|
||||||
file_AbilityMetaModifierChange_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaModifierChange_proto_goTypes = nil
|
|
||||||
file_AbilityMetaModifierChange_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,173 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaModifierDurabilityChange.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaModifierDurabilityChange struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ReduceDurability float32 `protobuf:"fixed32,6,opt,name=reduce_durability,json=reduceDurability,proto3" json:"reduce_durability,omitempty"`
|
|
||||||
RemainDurability float32 `protobuf:"fixed32,15,opt,name=remain_durability,json=remainDurability,proto3" json:"remain_durability,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierDurabilityChange) Reset() {
|
|
||||||
*x = AbilityMetaModifierDurabilityChange{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaModifierDurabilityChange_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierDurabilityChange) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaModifierDurabilityChange) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierDurabilityChange) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaModifierDurabilityChange_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaModifierDurabilityChange.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaModifierDurabilityChange) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaModifierDurabilityChange_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierDurabilityChange) GetReduceDurability() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ReduceDurability
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaModifierDurabilityChange) GetRemainDurability() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RemainDurability
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaModifierDurabilityChange_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaModifierDurabilityChange_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x29, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x4d, 0x6f, 0x64,
|
|
||||||
0x69, 0x66, 0x69, 0x65, 0x72, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43,
|
|
||||||
0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x22, 0x7f, 0x0a, 0x23, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74,
|
|
||||||
0x61, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x64,
|
|
||||||
0x75, 0x63, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06,
|
|
||||||
0x20, 0x01, 0x28, 0x02, 0x52, 0x10, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x44, 0x75, 0x72, 0x61,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e,
|
|
||||||
0x5f, 0x64, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28,
|
|
||||||
0x02, 0x52, 0x10, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
||||||
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_rawDescData = file_AbilityMetaModifierDurabilityChange_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaModifierDurabilityChange_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaModifierDurabilityChange_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaModifierDurabilityChange_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaModifierDurabilityChange_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaModifierDurabilityChange_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaModifierDurabilityChange)(nil), // 0: proto.AbilityMetaModifierDurabilityChange
|
|
||||||
}
|
|
||||||
var file_AbilityMetaModifierDurabilityChange_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaModifierDurabilityChange_proto_init() }
|
|
||||||
func file_AbilityMetaModifierDurabilityChange_proto_init() {
|
|
||||||
if File_AbilityMetaModifierDurabilityChange_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaModifierDurabilityChange); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaModifierDurabilityChange_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaModifierDurabilityChange_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaModifierDurabilityChange_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaModifierDurabilityChange_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaModifierDurabilityChange_proto = out.File
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_goTypes = nil
|
|
||||||
file_AbilityMetaModifierDurabilityChange_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaReInitOverrideMap.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaReInitOverrideMap struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
OverrideMap []*AbilityScalarValueEntry `protobuf:"bytes,7,rep,name=override_map,json=overrideMap,proto3" json:"override_map,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaReInitOverrideMap) Reset() {
|
|
||||||
*x = AbilityMetaReInitOverrideMap{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaReInitOverrideMap_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaReInitOverrideMap) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaReInitOverrideMap) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaReInitOverrideMap) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaReInitOverrideMap_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaReInitOverrideMap.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaReInitOverrideMap) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaReInitOverrideMap_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaReInitOverrideMap) GetOverrideMap() []*AbilityScalarValueEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.OverrideMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaReInitOverrideMap_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaReInitOverrideMap_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x22, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x49,
|
|
||||||
0x6e, 0x69, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x61, 0x70, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x61, 0x0a, 0x1c, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x49, 0x6e, 0x69, 0x74, 0x4f,
|
|
||||||
0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x61, 0x70, 0x12, 0x41, 0x0a, 0x0c, 0x6f, 0x76,
|
|
||||||
0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b,
|
|
||||||
0x32, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
|
||||||
0x52, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x4d, 0x61, 0x70, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_rawDescData = file_AbilityMetaReInitOverrideMap_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaReInitOverrideMap_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaReInitOverrideMap_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaReInitOverrideMap_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaReInitOverrideMap_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaReInitOverrideMap_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaReInitOverrideMap)(nil), // 0: proto.AbilityMetaReInitOverrideMap
|
|
||||||
(*AbilityScalarValueEntry)(nil), // 1: proto.AbilityScalarValueEntry
|
|
||||||
}
|
|
||||||
var file_AbilityMetaReInitOverrideMap_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMetaReInitOverrideMap.override_map:type_name -> proto.AbilityScalarValueEntry
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaReInitOverrideMap_proto_init() }
|
|
||||||
func file_AbilityMetaReInitOverrideMap_proto_init() {
|
|
||||||
if File_AbilityMetaReInitOverrideMap_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityScalarValueEntry_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaReInitOverrideMap); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaReInitOverrideMap_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaReInitOverrideMap_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaReInitOverrideMap_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaReInitOverrideMap_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaReInitOverrideMap_proto = out.File
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_goTypes = nil
|
|
||||||
file_AbilityMetaReInitOverrideMap_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaSetAbilityTrigger.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaSetAbilityTrigger struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
TriggerAbilityEntityId uint32 `protobuf:"varint,11,opt,name=trigger_ability_entity_id,json=triggerAbilityEntityId,proto3" json:"trigger_ability_entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetAbilityTrigger) Reset() {
|
|
||||||
*x = AbilityMetaSetAbilityTrigger{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaSetAbilityTrigger_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetAbilityTrigger) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaSetAbilityTrigger) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetAbilityTrigger) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaSetAbilityTrigger_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaSetAbilityTrigger.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaSetAbilityTrigger) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaSetAbilityTrigger_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetAbilityTrigger) GetTriggerAbilityEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TriggerAbilityEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaSetAbilityTrigger_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaSetAbilityTrigger_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x22, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x65, 0x74,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x59, 0x0a, 0x1c, 0x41,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x65, 0x74, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x39, 0x0a, 0x19, 0x74,
|
|
||||||
0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65,
|
|
||||||
0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x16,
|
|
||||||
0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6e,
|
|
||||||
0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_rawDescData = file_AbilityMetaSetAbilityTrigger_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaSetAbilityTrigger_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaSetAbilityTrigger_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaSetAbilityTrigger_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaSetAbilityTrigger_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaSetAbilityTrigger_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaSetAbilityTrigger)(nil), // 0: proto.AbilityMetaSetAbilityTrigger
|
|
||||||
}
|
|
||||||
var file_AbilityMetaSetAbilityTrigger_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaSetAbilityTrigger_proto_init() }
|
|
||||||
func file_AbilityMetaSetAbilityTrigger_proto_init() {
|
|
||||||
if File_AbilityMetaSetAbilityTrigger_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaSetAbilityTrigger); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaSetAbilityTrigger_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaSetAbilityTrigger_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaSetAbilityTrigger_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaSetAbilityTrigger_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaSetAbilityTrigger_proto = out.File
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_goTypes = nil
|
|
||||||
file_AbilityMetaSetAbilityTrigger_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaSetKilledState.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaSetKilledState struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Killed bool `protobuf:"varint,2,opt,name=killed,proto3" json:"killed,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetKilledState) Reset() {
|
|
||||||
*x = AbilityMetaSetKilledState{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaSetKilledState_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetKilledState) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaSetKilledState) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetKilledState) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaSetKilledState_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaSetKilledState.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaSetKilledState) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaSetKilledState_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetKilledState) GetKilled() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Killed
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaSetKilledState_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaSetKilledState_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x65, 0x74,
|
|
||||||
0x4b, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x33, 0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x65, 0x74, 0x4b, 0x69, 0x6c, 0x6c, 0x65, 0x64,
|
|
||||||
0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6b, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x18,
|
|
||||||
0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x6b, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaSetKilledState_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaSetKilledState_proto_rawDescData = file_AbilityMetaSetKilledState_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaSetKilledState_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaSetKilledState_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaSetKilledState_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaSetKilledState_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaSetKilledState_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaSetKilledState_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaSetKilledState_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaSetKilledState)(nil), // 0: proto.AbilityMetaSetKilledState
|
|
||||||
}
|
|
||||||
var file_AbilityMetaSetKilledState_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaSetKilledState_proto_init() }
|
|
||||||
func file_AbilityMetaSetKilledState_proto_init() {
|
|
||||||
if File_AbilityMetaSetKilledState_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaSetKilledState_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaSetKilledState); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaSetKilledState_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaSetKilledState_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaSetKilledState_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaSetKilledState_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaSetKilledState_proto = out.File
|
|
||||||
file_AbilityMetaSetKilledState_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaSetKilledState_proto_goTypes = nil
|
|
||||||
file_AbilityMetaSetKilledState_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaSetModifierApplyEntityId.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaSetModifierApplyEntityId struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ApplyEntityId uint32 `protobuf:"varint,10,opt,name=apply_entity_id,json=applyEntityId,proto3" json:"apply_entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetModifierApplyEntityId) Reset() {
|
|
||||||
*x = AbilityMetaSetModifierApplyEntityId{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaSetModifierApplyEntityId_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetModifierApplyEntityId) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaSetModifierApplyEntityId) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetModifierApplyEntityId) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaSetModifierApplyEntityId_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaSetModifierApplyEntityId.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaSetModifierApplyEntityId) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaSetModifierApplyEntityId_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetModifierApplyEntityId) GetApplyEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ApplyEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaSetModifierApplyEntityId_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaSetModifierApplyEntityId_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x29, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x65, 0x74,
|
|
||||||
0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x45, 0x6e, 0x74,
|
|
||||||
0x69, 0x74, 0x79, 0x49, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x22, 0x4d, 0x0a, 0x23, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74,
|
|
||||||
0x61, 0x53, 0x65, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c,
|
|
||||||
0x79, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x61, 0x70, 0x70,
|
|
||||||
0x6c, 0x79, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49,
|
|
||||||
0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_rawDescData = file_AbilityMetaSetModifierApplyEntityId_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaSetModifierApplyEntityId_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaSetModifierApplyEntityId_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaSetModifierApplyEntityId_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaSetModifierApplyEntityId_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaSetModifierApplyEntityId_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaSetModifierApplyEntityId)(nil), // 0: proto.AbilityMetaSetModifierApplyEntityId
|
|
||||||
}
|
|
||||||
var file_AbilityMetaSetModifierApplyEntityId_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaSetModifierApplyEntityId_proto_init() }
|
|
||||||
func file_AbilityMetaSetModifierApplyEntityId_proto_init() {
|
|
||||||
if File_AbilityMetaSetModifierApplyEntityId_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaSetModifierApplyEntityId); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaSetModifierApplyEntityId_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaSetModifierApplyEntityId_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaSetModifierApplyEntityId_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaSetModifierApplyEntityId_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaSetModifierApplyEntityId_proto = out.File
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_goTypes = nil
|
|
||||||
file_AbilityMetaSetModifierApplyEntityId_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,167 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaSetPoseParameter.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaSetPoseParameter struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Value *AnimatorParameterValueInfoPair `protobuf:"bytes,6,opt,name=value,proto3" json:"value,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetPoseParameter) Reset() {
|
|
||||||
*x = AbilityMetaSetPoseParameter{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaSetPoseParameter_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetPoseParameter) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaSetPoseParameter) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetPoseParameter) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaSetPoseParameter_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaSetPoseParameter.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaSetPoseParameter) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaSetPoseParameter_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSetPoseParameter) GetValue() *AnimatorParameterValueInfoPair {
|
|
||||||
if x != nil {
|
|
||||||
return x.Value
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaSetPoseParameter_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaSetPoseParameter_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x65, 0x74,
|
|
||||||
0x50, 0x6f, 0x73, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x41, 0x6e, 0x69, 0x6d,
|
|
||||||
0x61, 0x74, 0x6f, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x56, 0x61, 0x6c,
|
|
||||||
0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x50, 0x61, 0x69, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x5a, 0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53,
|
|
||||||
0x65, 0x74, 0x50, 0x6f, 0x73, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12,
|
|
||||||
0x3b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x6f, 0x72, 0x50,
|
|
||||||
0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x49, 0x6e, 0x66,
|
|
||||||
0x6f, 0x50, 0x61, 0x69, 0x72, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_rawDescData = file_AbilityMetaSetPoseParameter_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaSetPoseParameter_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaSetPoseParameter_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaSetPoseParameter_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaSetPoseParameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaSetPoseParameter_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaSetPoseParameter)(nil), // 0: proto.AbilityMetaSetPoseParameter
|
|
||||||
(*AnimatorParameterValueInfoPair)(nil), // 1: proto.AnimatorParameterValueInfoPair
|
|
||||||
}
|
|
||||||
var file_AbilityMetaSetPoseParameter_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMetaSetPoseParameter.value:type_name -> proto.AnimatorParameterValueInfoPair
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaSetPoseParameter_proto_init() }
|
|
||||||
func file_AbilityMetaSetPoseParameter_proto_init() {
|
|
||||||
if File_AbilityMetaSetPoseParameter_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AnimatorParameterValueInfoPair_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaSetPoseParameter); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaSetPoseParameter_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaSetPoseParameter_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaSetPoseParameter_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaSetPoseParameter_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaSetPoseParameter_proto = out.File
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_goTypes = nil
|
|
||||||
file_AbilityMetaSetPoseParameter_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,171 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaSpecialFloatArgument.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaSpecialFloatArgument struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ArgumentValue float32 `protobuf:"fixed32,14,opt,name=argument_value,json=argumentValue,proto3" json:"argument_value,omitempty"`
|
|
||||||
IsOn bool `protobuf:"varint,10,opt,name=is_on,json=isOn,proto3" json:"is_on,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSpecialFloatArgument) Reset() {
|
|
||||||
*x = AbilityMetaSpecialFloatArgument{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaSpecialFloatArgument_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSpecialFloatArgument) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaSpecialFloatArgument) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSpecialFloatArgument) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaSpecialFloatArgument_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaSpecialFloatArgument.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaSpecialFloatArgument) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaSpecialFloatArgument_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSpecialFloatArgument) GetArgumentValue() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ArgumentValue
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaSpecialFloatArgument) GetIsOn() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsOn
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaSpecialFloatArgument_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaSpecialFloatArgument_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x25, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x70, 0x65,
|
|
||||||
0x63, 0x69, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e,
|
|
||||||
0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5d,
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x70, 0x65,
|
|
||||||
0x63, 0x69, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x41, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e,
|
|
||||||
0x74, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61,
|
|
||||||
0x6c, 0x75, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x61, 0x72, 0x67, 0x75, 0x6d,
|
|
||||||
0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x69, 0x73, 0x5f, 0x6f,
|
|
||||||
0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, 0x4f, 0x6e, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_rawDescData = file_AbilityMetaSpecialFloatArgument_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaSpecialFloatArgument_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaSpecialFloatArgument_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaSpecialFloatArgument_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaSpecialFloatArgument_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaSpecialFloatArgument_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaSpecialFloatArgument)(nil), // 0: proto.AbilityMetaSpecialFloatArgument
|
|
||||||
}
|
|
||||||
var file_AbilityMetaSpecialFloatArgument_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaSpecialFloatArgument_proto_init() }
|
|
||||||
func file_AbilityMetaSpecialFloatArgument_proto_init() {
|
|
||||||
if File_AbilityMetaSpecialFloatArgument_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaSpecialFloatArgument); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaSpecialFloatArgument_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaSpecialFloatArgument_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaSpecialFloatArgument_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaSpecialFloatArgument_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaSpecialFloatArgument_proto = out.File
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_goTypes = nil
|
|
||||||
file_AbilityMetaSpecialFloatArgument_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,205 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaTriggerElementReaction.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaTriggerElementReaction struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
HitIndex int32 `protobuf:"varint,9,opt,name=hit_index,json=hitIndex,proto3" json:"hit_index,omitempty"`
|
|
||||||
ElementSourceType uint32 `protobuf:"varint,7,opt,name=element_source_type,json=elementSourceType,proto3" json:"element_source_type,omitempty"`
|
|
||||||
ElementReactorType uint32 `protobuf:"varint,12,opt,name=element_reactor_type,json=elementReactorType,proto3" json:"element_reactor_type,omitempty"`
|
|
||||||
TriggerEntityId uint32 `protobuf:"varint,2,opt,name=trigger_entity_id,json=triggerEntityId,proto3" json:"trigger_entity_id,omitempty"`
|
|
||||||
ElementReactionType uint32 `protobuf:"varint,1,opt,name=element_reaction_type,json=elementReactionType,proto3" json:"element_reaction_type,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) Reset() {
|
|
||||||
*x = AbilityMetaTriggerElementReaction{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaTriggerElementReaction_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaTriggerElementReaction) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaTriggerElementReaction_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaTriggerElementReaction.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaTriggerElementReaction) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaTriggerElementReaction_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) GetHitIndex() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.HitIndex
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) GetElementSourceType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementSourceType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) GetElementReactorType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementReactorType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) GetTriggerEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TriggerEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaTriggerElementReaction) GetElementReactionType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementReactionType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaTriggerElementReaction_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaTriggerElementReaction_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x27, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x54, 0x72, 0x69,
|
|
||||||
0x67, 0x67, 0x65, 0x72, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x82, 0x02, 0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61,
|
|
||||||
0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
|
||||||
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x68, 0x69, 0x74, 0x5f, 0x69, 0x6e,
|
|
||||||
0x64, 0x65, 0x78, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x68, 0x69, 0x74, 0x49, 0x6e,
|
|
||||||
0x64, 0x65, 0x78, 0x12, 0x2e, 0x0a, 0x13, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73,
|
|
||||||
0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x11, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54,
|
|
||||||
0x79, 0x70, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72,
|
|
||||||
0x65, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x12, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74, 0x6f,
|
|
||||||
0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72,
|
|
||||||
0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x0f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49,
|
|
||||||
0x64, 0x12, 0x32, 0x0a, 0x15, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x61,
|
|
||||||
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x13, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f,
|
|
||||||
0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_rawDescData = file_AbilityMetaTriggerElementReaction_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaTriggerElementReaction_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaTriggerElementReaction_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaTriggerElementReaction_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaTriggerElementReaction_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaTriggerElementReaction_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaTriggerElementReaction)(nil), // 0: proto.AbilityMetaTriggerElementReaction
|
|
||||||
}
|
|
||||||
var file_AbilityMetaTriggerElementReaction_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaTriggerElementReaction_proto_init() }
|
|
||||||
func file_AbilityMetaTriggerElementReaction_proto_init() {
|
|
||||||
if File_AbilityMetaTriggerElementReaction_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaTriggerElementReaction); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaTriggerElementReaction_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaTriggerElementReaction_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaTriggerElementReaction_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaTriggerElementReaction_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaTriggerElementReaction_proto = out.File
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_goTypes = nil
|
|
||||||
file_AbilityMetaTriggerElementReaction_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,201 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMetaUpdateBaseReactionDamage.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMetaUpdateBaseReactionDamage struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
SourceCasterId uint32 `protobuf:"varint,15,opt,name=source_caster_id,json=sourceCasterId,proto3" json:"source_caster_id,omitempty"`
|
|
||||||
AbilityName *AbilityString `protobuf:"bytes,1,opt,name=ability_name,json=abilityName,proto3" json:"ability_name,omitempty"`
|
|
||||||
GlobalValueKey *AbilityString `protobuf:"bytes,4,opt,name=global_value_key,json=globalValueKey,proto3" json:"global_value_key,omitempty"`
|
|
||||||
ReactionType uint32 `protobuf:"varint,8,opt,name=reaction_type,json=reactionType,proto3" json:"reaction_type,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) Reset() {
|
|
||||||
*x = AbilityMetaUpdateBaseReactionDamage{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMetaUpdateBaseReactionDamage_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMetaUpdateBaseReactionDamage) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMetaUpdateBaseReactionDamage_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMetaUpdateBaseReactionDamage.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMetaUpdateBaseReactionDamage) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) GetSourceCasterId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.SourceCasterId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) GetAbilityName() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbilityName
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) GetGlobalValueKey() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.GlobalValueKey
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMetaUpdateBaseReactionDamage) GetReactionType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ReactionType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMetaUpdateBaseReactionDamage_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMetaUpdateBaseReactionDamage_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x29, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x55, 0x70, 0x64,
|
|
||||||
0x61, 0x74, 0x65, 0x42, 0x61, 0x73, 0x65, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44,
|
|
||||||
0x61, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x1a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e,
|
|
||||||
0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xed, 0x01, 0x0a, 0x23, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x61, 0x73,
|
|
||||||
0x65, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x12,
|
|
||||||
0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x61, 0x73, 0x74, 0x65, 0x72,
|
|
||||||
0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63,
|
|
||||||
0x65, 0x43, 0x61, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x0c, 0x61, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
||||||
0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53,
|
|
||||||
0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0b, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4e, 0x61,
|
|
||||||
0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x10, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x76, 0x61, 0x6c,
|
|
||||||
0x75, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69,
|
|
||||||
0x6e, 0x67, 0x52, 0x0e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x4b,
|
|
||||||
0x65, 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
|
|
||||||
0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x72, 0x65, 0x61, 0x63, 0x74,
|
|
||||||
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescData = file_AbilityMetaUpdateBaseReactionDamage_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMetaUpdateBaseReactionDamage_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMetaUpdateBaseReactionDamage_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMetaUpdateBaseReactionDamage_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMetaUpdateBaseReactionDamage)(nil), // 0: proto.AbilityMetaUpdateBaseReactionDamage
|
|
||||||
(*AbilityString)(nil), // 1: proto.AbilityString
|
|
||||||
}
|
|
||||||
var file_AbilityMetaUpdateBaseReactionDamage_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMetaUpdateBaseReactionDamage.ability_name:type_name -> proto.AbilityString
|
|
||||||
1, // 1: proto.AbilityMetaUpdateBaseReactionDamage.global_value_key:type_name -> proto.AbilityString
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMetaUpdateBaseReactionDamage_proto_init() }
|
|
||||||
func file_AbilityMetaUpdateBaseReactionDamage_proto_init() {
|
|
||||||
if File_AbilityMetaUpdateBaseReactionDamage_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityString_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMetaUpdateBaseReactionDamage); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMetaUpdateBaseReactionDamage_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMetaUpdateBaseReactionDamage_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMetaUpdateBaseReactionDamage_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMetaUpdateBaseReactionDamage_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMetaUpdateBaseReactionDamage_proto = out.File
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_rawDesc = nil
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_goTypes = nil
|
|
||||||
file_AbilityMetaUpdateBaseReactionDamage_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinAvatarCombat.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinAvatarCombat struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsEnterCombat bool `protobuf:"varint,9,opt,name=is_enter_combat,json=isEnterCombat,proto3" json:"is_enter_combat,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarCombat) Reset() {
|
|
||||||
*x = AbilityMixinAvatarCombat{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinAvatarCombat_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarCombat) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinAvatarCombat) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarCombat) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinAvatarCombat_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinAvatarCombat.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinAvatarCombat) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinAvatarCombat_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarCombat) GetIsEnterCombat() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsEnterCombat
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinAvatarCombat_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinAvatarCombat_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x41, 0x76,
|
|
||||||
0x61, 0x74, 0x61, 0x72, 0x43, 0x6f, 0x6d, 0x62, 0x61, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x42, 0x0a, 0x18, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x43, 0x6f, 0x6d,
|
|
||||||
0x62, 0x61, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f,
|
|
||||||
0x63, 0x6f, 0x6d, 0x62, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x69, 0x73,
|
|
||||||
0x45, 0x6e, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x62, 0x61, 0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e,
|
|
||||||
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinAvatarCombat_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinAvatarCombat_proto_rawDescData = file_AbilityMixinAvatarCombat_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinAvatarCombat_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinAvatarCombat_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinAvatarCombat_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinAvatarCombat_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinAvatarCombat_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinAvatarCombat_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinAvatarCombat_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinAvatarCombat)(nil), // 0: proto.AbilityMixinAvatarCombat
|
|
||||||
}
|
|
||||||
var file_AbilityMixinAvatarCombat_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinAvatarCombat_proto_init() }
|
|
||||||
func file_AbilityMixinAvatarCombat_proto_init() {
|
|
||||||
if File_AbilityMixinAvatarCombat_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinAvatarCombat_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinAvatarCombat); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinAvatarCombat_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinAvatarCombat_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinAvatarCombat_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinAvatarCombat_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinAvatarCombat_proto = out.File
|
|
||||||
file_AbilityMixinAvatarCombat_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinAvatarCombat_proto_goTypes = nil
|
|
||||||
file_AbilityMixinAvatarCombat_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,177 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinAvatarSteerByCamera.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinAvatarSteerByCamera struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
TargetDir *Vector `protobuf:"bytes,7,opt,name=target_dir,json=targetDir,proto3" json:"target_dir,omitempty"`
|
|
||||||
TargetPos *Vector `protobuf:"bytes,6,opt,name=target_pos,json=targetPos,proto3" json:"target_pos,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarSteerByCamera) Reset() {
|
|
||||||
*x = AbilityMixinAvatarSteerByCamera{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinAvatarSteerByCamera_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarSteerByCamera) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinAvatarSteerByCamera) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarSteerByCamera) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinAvatarSteerByCamera_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinAvatarSteerByCamera.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinAvatarSteerByCamera) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinAvatarSteerByCamera_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarSteerByCamera) GetTargetDir() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.TargetDir
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinAvatarSteerByCamera) GetTargetPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.TargetPos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinAvatarSteerByCamera_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinAvatarSteerByCamera_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x25, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x41, 0x76,
|
|
||||||
0x61, 0x74, 0x61, 0x72, 0x53, 0x74, 0x65, 0x65, 0x72, 0x42, 0x79, 0x43, 0x61, 0x6d, 0x65, 0x72,
|
|
||||||
0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c,
|
|
||||||
0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7d, 0x0a, 0x1f,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x41, 0x76, 0x61, 0x74,
|
|
||||||
0x61, 0x72, 0x53, 0x74, 0x65, 0x65, 0x72, 0x42, 0x79, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x12,
|
|
||||||
0x2c, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x07, 0x20,
|
|
||||||
0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74,
|
|
||||||
0x6f, 0x72, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x69, 0x72, 0x12, 0x2c, 0x0a,
|
|
||||||
0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
||||||
0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72,
|
|
||||||
0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x50, 0x6f, 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e,
|
|
||||||
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_rawDescData = file_AbilityMixinAvatarSteerByCamera_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinAvatarSteerByCamera_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinAvatarSteerByCamera_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinAvatarSteerByCamera_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinAvatarSteerByCamera_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinAvatarSteerByCamera_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinAvatarSteerByCamera)(nil), // 0: proto.AbilityMixinAvatarSteerByCamera
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityMixinAvatarSteerByCamera_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMixinAvatarSteerByCamera.target_dir:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityMixinAvatarSteerByCamera.target_pos:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinAvatarSteerByCamera_proto_init() }
|
|
||||||
func file_AbilityMixinAvatarSteerByCamera_proto_init() {
|
|
||||||
if File_AbilityMixinAvatarSteerByCamera_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinAvatarSteerByCamera); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinAvatarSteerByCamera_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinAvatarSteerByCamera_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinAvatarSteerByCamera_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinAvatarSteerByCamera_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinAvatarSteerByCamera_proto = out.File
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_goTypes = nil
|
|
||||||
file_AbilityMixinAvatarSteerByCamera_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinCostStamina.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinCostStamina struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsSwim bool `protobuf:"varint,3,opt,name=is_swim,json=isSwim,proto3" json:"is_swim,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinCostStamina) Reset() {
|
|
||||||
*x = AbilityMixinCostStamina{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinCostStamina_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinCostStamina) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinCostStamina) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinCostStamina) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinCostStamina_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinCostStamina.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinCostStamina) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinCostStamina_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinCostStamina) GetIsSwim() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsSwim
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinCostStamina_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinCostStamina_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x43, 0x6f,
|
|
||||||
0x73, 0x74, 0x53, 0x74, 0x61, 0x6d, 0x69, 0x6e, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x32, 0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x43, 0x6f, 0x73, 0x74, 0x53, 0x74, 0x61, 0x6d, 0x69, 0x6e,
|
|
||||||
0x61, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x77, 0x69, 0x6d, 0x18, 0x03, 0x20, 0x01,
|
|
||||||
0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x53, 0x77, 0x69, 0x6d, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f,
|
|
||||||
0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinCostStamina_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinCostStamina_proto_rawDescData = file_AbilityMixinCostStamina_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinCostStamina_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinCostStamina_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinCostStamina_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinCostStamina_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinCostStamina_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinCostStamina_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinCostStamina_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinCostStamina)(nil), // 0: proto.AbilityMixinCostStamina
|
|
||||||
}
|
|
||||||
var file_AbilityMixinCostStamina_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinCostStamina_proto_init() }
|
|
||||||
func file_AbilityMixinCostStamina_proto_init() {
|
|
||||||
if File_AbilityMixinCostStamina_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinCostStamina_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinCostStamina); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinCostStamina_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinCostStamina_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinCostStamina_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinCostStamina_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinCostStamina_proto = out.File
|
|
||||||
file_AbilityMixinCostStamina_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinCostStamina_proto_goTypes = nil
|
|
||||||
file_AbilityMixinCostStamina_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinDoActionByElementReaction.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinDoActionByElementReaction struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
TargetEntityId uint32 `protobuf:"varint,1,opt,name=target_entity_id,json=targetEntityId,proto3" json:"target_entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionByElementReaction) Reset() {
|
|
||||||
*x = AbilityMixinDoActionByElementReaction{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinDoActionByElementReaction_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionByElementReaction) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinDoActionByElementReaction) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionByElementReaction) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinDoActionByElementReaction_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinDoActionByElementReaction.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinDoActionByElementReaction) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinDoActionByElementReaction_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionByElementReaction) GetTargetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TargetEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinDoActionByElementReaction_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinDoActionByElementReaction_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x2b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x44, 0x6f,
|
|
||||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52,
|
|
||||||
0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x51, 0x0a, 0x25, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d,
|
|
||||||
0x69, 0x78, 0x69, 0x6e, 0x44, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x45, 0x6c,
|
|
||||||
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a,
|
|
||||||
0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69,
|
|
||||||
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45,
|
|
||||||
0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_rawDescData = file_AbilityMixinDoActionByElementReaction_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinDoActionByElementReaction_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinDoActionByElementReaction_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinDoActionByElementReaction_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinDoActionByElementReaction_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinDoActionByElementReaction_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinDoActionByElementReaction)(nil), // 0: proto.AbilityMixinDoActionByElementReaction
|
|
||||||
}
|
|
||||||
var file_AbilityMixinDoActionByElementReaction_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinDoActionByElementReaction_proto_init() }
|
|
||||||
func file_AbilityMixinDoActionByElementReaction_proto_init() {
|
|
||||||
if File_AbilityMixinDoActionByElementReaction_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinDoActionByElementReaction); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinDoActionByElementReaction_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinDoActionByElementReaction_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinDoActionByElementReaction_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinDoActionByElementReaction_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinDoActionByElementReaction_proto = out.File
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_goTypes = nil
|
|
||||||
file_AbilityMixinDoActionByElementReaction_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,165 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinDoActionBySelfModifierElementDurabilityRatio.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinDoActionBySelfModifierElementDurabilityRatio struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
LastDurabilityRatio float32 `protobuf:"fixed32,9,opt,name=last_durability_ratio,json=lastDurabilityRatio,proto3" json:"last_durability_ratio,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionBySelfModifierElementDurabilityRatio) Reset() {
|
|
||||||
*x = AbilityMixinDoActionBySelfModifierElementDurabilityRatio{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionBySelfModifierElementDurabilityRatio) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinDoActionBySelfModifierElementDurabilityRatio) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionBySelfModifierElementDurabilityRatio) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinDoActionBySelfModifierElementDurabilityRatio.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinDoActionBySelfModifierElementDurabilityRatio) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinDoActionBySelfModifierElementDurabilityRatio) GetLastDurabilityRatio() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.LastDurabilityRatio
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x3e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x44, 0x6f,
|
|
||||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x65, 0x6c, 0x66, 0x4d, 0x6f, 0x64, 0x69,
|
|
||||||
0x66, 0x69, 0x65, 0x72, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x75, 0x72, 0x61, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x6e, 0x0a, 0x38, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x44, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42,
|
|
||||||
0x79, 0x53, 0x65, 0x6c, 0x66, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x6c, 0x65,
|
|
||||||
0x6d, 0x65, 0x6e, 0x74, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x61,
|
|
||||||
0x74, 0x69, 0x6f, 0x12, 0x32, 0x0a, 0x15, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x64, 0x75, 0x72, 0x61,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x09, 0x20, 0x01,
|
|
||||||
0x28, 0x02, 0x52, 0x13, 0x6c, 0x61, 0x73, 0x74, 0x44, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescData = file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinDoActionBySelfModifierElementDurabilityRatio)(nil), // 0: proto.AbilityMixinDoActionBySelfModifierElementDurabilityRatio
|
|
||||||
}
|
|
||||||
var file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_init() }
|
|
||||||
func file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_init() {
|
|
||||||
if File_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinDoActionBySelfModifierElementDurabilityRatio); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto = out.File
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_goTypes = nil
|
|
||||||
file_AbilityMixinDoActionBySelfModifierElementDurabilityRatio_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,210 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinElementShield.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinElementShield struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
SubShield float32 `protobuf:"fixed32,10,opt,name=sub_shield,json=subShield,proto3" json:"sub_shield,omitempty"`
|
|
||||||
Shield float32 `protobuf:"fixed32,8,opt,name=shield,proto3" json:"shield,omitempty"`
|
|
||||||
AbsorbType uint32 `protobuf:"varint,1,opt,name=absorb_type,json=absorbType,proto3" json:"absorb_type,omitempty"`
|
|
||||||
PlayerNum uint32 `protobuf:"varint,4,opt,name=player_num,json=playerNum,proto3" json:"player_num,omitempty"`
|
|
||||||
IsShieldBroken bool `protobuf:"varint,9,opt,name=is_shield_broken,json=isShieldBroken,proto3" json:"is_shield_broken,omitempty"`
|
|
||||||
MaxShield float32 `protobuf:"fixed32,12,opt,name=max_shield,json=maxShield,proto3" json:"max_shield,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) Reset() {
|
|
||||||
*x = AbilityMixinElementShield{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinElementShield_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinElementShield) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinElementShield_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinElementShield.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinElementShield) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinElementShield_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) GetSubShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.SubShield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) GetShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Shield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) GetAbsorbType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AbsorbType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) GetPlayerNum() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.PlayerNum
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) GetIsShieldBroken() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsShieldBroken
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinElementShield) GetMaxShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.MaxShield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinElementShield_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinElementShield_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x45, 0x6c,
|
|
||||||
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xdb, 0x01, 0x0a, 0x19, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
|
|
||||||
0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x5f, 0x73, 0x68,
|
|
||||||
0x69, 0x65, 0x6c, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x73, 0x75, 0x62, 0x53,
|
|
||||||
0x68, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x18,
|
|
||||||
0x08, 0x20, 0x01, 0x28, 0x02, 0x52, 0x06, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x1f, 0x0a,
|
|
||||||
0x0b, 0x61, 0x62, 0x73, 0x6f, 0x72, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x0a, 0x61, 0x62, 0x73, 0x6f, 0x72, 0x62, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d,
|
|
||||||
0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x28, 0x0a,
|
|
||||||
0x10, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x72, 0x6f, 0x6b, 0x65,
|
|
||||||
0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x53, 0x68, 0x69, 0x65, 0x6c,
|
|
||||||
0x64, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x78, 0x5f, 0x73,
|
|
||||||
0x68, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6d, 0x61, 0x78,
|
|
||||||
0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinElementShield_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinElementShield_proto_rawDescData = file_AbilityMixinElementShield_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinElementShield_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinElementShield_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinElementShield_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinElementShield_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinElementShield_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinElementShield_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinElementShield_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinElementShield)(nil), // 0: proto.AbilityMixinElementShield
|
|
||||||
}
|
|
||||||
var file_AbilityMixinElementShield_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinElementShield_proto_init() }
|
|
||||||
func file_AbilityMixinElementShield_proto_init() {
|
|
||||||
if File_AbilityMixinElementShield_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinElementShield_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinElementShield); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinElementShield_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinElementShield_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinElementShield_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinElementShield_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinElementShield_proto = out.File
|
|
||||||
file_AbilityMixinElementShield_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinElementShield_proto_goTypes = nil
|
|
||||||
file_AbilityMixinElementShield_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinEliteShield.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinEliteShield struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
SubShield float32 `protobuf:"fixed32,2,opt,name=sub_shield,json=subShield,proto3" json:"sub_shield,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEliteShield) Reset() {
|
|
||||||
*x = AbilityMixinEliteShield{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinEliteShield_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEliteShield) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinEliteShield) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEliteShield) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinEliteShield_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinEliteShield.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinEliteShield) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinEliteShield_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEliteShield) GetSubShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.SubShield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinEliteShield_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinEliteShield_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x45, 0x6c,
|
|
||||||
0x69, 0x74, 0x65, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x38, 0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x45, 0x6c, 0x69, 0x74, 0x65, 0x53, 0x68, 0x69, 0x65, 0x6c,
|
|
||||||
0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x5f, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x18,
|
|
||||||
0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x73, 0x75, 0x62, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinEliteShield_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinEliteShield_proto_rawDescData = file_AbilityMixinEliteShield_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinEliteShield_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinEliteShield_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinEliteShield_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinEliteShield_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinEliteShield_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinEliteShield_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinEliteShield_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinEliteShield)(nil), // 0: proto.AbilityMixinEliteShield
|
|
||||||
}
|
|
||||||
var file_AbilityMixinEliteShield_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinEliteShield_proto_init() }
|
|
||||||
func file_AbilityMixinEliteShield_proto_init() {
|
|
||||||
if File_AbilityMixinEliteShield_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinEliteShield_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinEliteShield); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinEliteShield_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinEliteShield_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinEliteShield_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinEliteShield_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinEliteShield_proto = out.File
|
|
||||||
file_AbilityMixinEliteShield_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinEliteShield_proto_goTypes = nil
|
|
||||||
file_AbilityMixinEliteShield_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinEmpty.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinEmpty struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEmpty) Reset() {
|
|
||||||
*x = AbilityMixinEmpty{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinEmpty_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEmpty) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinEmpty) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinEmpty) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinEmpty_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinEmpty.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinEmpty) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinEmpty_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinEmpty_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinEmpty_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x45, 0x6d,
|
|
||||||
0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x22, 0x13, 0x0a, 0x11, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e,
|
|
||||||
0x45, 0x6d, 0x70, 0x74, 0x79, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinEmpty_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinEmpty_proto_rawDescData = file_AbilityMixinEmpty_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinEmpty_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinEmpty_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinEmpty_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinEmpty_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinEmpty_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinEmpty_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinEmpty_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinEmpty)(nil), // 0: proto.AbilityMixinEmpty
|
|
||||||
}
|
|
||||||
var file_AbilityMixinEmpty_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinEmpty_proto_init() }
|
|
||||||
func file_AbilityMixinEmpty_proto_init() {
|
|
||||||
if File_AbilityMixinEmpty_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinEmpty_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinEmpty); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinEmpty_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinEmpty_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinEmpty_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinEmpty_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinEmpty_proto = out.File
|
|
||||||
file_AbilityMixinEmpty_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinEmpty_proto_goTypes = nil
|
|
||||||
file_AbilityMixinEmpty_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinFieldEntityCountChange.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinFieldEntityCountChange struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
FieldEntityCount uint32 `protobuf:"varint,14,opt,name=field_entity_count,json=fieldEntityCount,proto3" json:"field_entity_count,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFieldEntityCountChange) Reset() {
|
|
||||||
*x = AbilityMixinFieldEntityCountChange{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinFieldEntityCountChange_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFieldEntityCountChange) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinFieldEntityCountChange) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFieldEntityCountChange) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinFieldEntityCountChange_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinFieldEntityCountChange.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinFieldEntityCountChange) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinFieldEntityCountChange_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFieldEntityCountChange) GetFieldEntityCount() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.FieldEntityCount
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinFieldEntityCountChange_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinFieldEntityCountChange_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x28, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x46, 0x69,
|
|
||||||
0x65, 0x6c, 0x64, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68,
|
|
||||||
0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x22, 0x52, 0x0a, 0x22, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69,
|
|
||||||
0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x75, 0x6e,
|
|
||||||
0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x66, 0x69, 0x65, 0x6c, 0x64,
|
|
||||||
0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x10, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
|
|
||||||
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_rawDescData = file_AbilityMixinFieldEntityCountChange_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinFieldEntityCountChange_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinFieldEntityCountChange_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinFieldEntityCountChange_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinFieldEntityCountChange_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinFieldEntityCountChange_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinFieldEntityCountChange)(nil), // 0: proto.AbilityMixinFieldEntityCountChange
|
|
||||||
}
|
|
||||||
var file_AbilityMixinFieldEntityCountChange_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinFieldEntityCountChange_proto_init() }
|
|
||||||
func file_AbilityMixinFieldEntityCountChange_proto_init() {
|
|
||||||
if File_AbilityMixinFieldEntityCountChange_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinFieldEntityCountChange); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinFieldEntityCountChange_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinFieldEntityCountChange_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinFieldEntityCountChange_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinFieldEntityCountChange_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinFieldEntityCountChange_proto = out.File
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_goTypes = nil
|
|
||||||
file_AbilityMixinFieldEntityCountChange_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,213 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinFireworksLauncher.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinFireworksLauncher struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
InvokeType uint32 `protobuf:"varint,2,opt,name=invoke_type,json=invokeType,proto3" json:"invoke_type,omitempty"`
|
|
||||||
StartCountDownTime uint32 `protobuf:"varint,3,opt,name=start_count_down_time,json=startCountDownTime,proto3" json:"start_count_down_time,omitempty"`
|
|
||||||
FiredBulletCount uint32 `protobuf:"varint,1,opt,name=fired_bullet_count,json=firedBulletCount,proto3" json:"fired_bullet_count,omitempty"`
|
|
||||||
Phase uint32 `protobuf:"varint,6,opt,name=phase,proto3" json:"phase,omitempty"`
|
|
||||||
FireworksConfig []uint32 `protobuf:"varint,4,rep,packed,name=fireworks_config,json=fireworksConfig,proto3" json:"fireworks_config,omitempty"`
|
|
||||||
TurnIndex uint32 `protobuf:"varint,7,opt,name=turn_index,json=turnIndex,proto3" json:"turn_index,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) Reset() {
|
|
||||||
*x = AbilityMixinFireworksLauncher{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinFireworksLauncher_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinFireworksLauncher) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinFireworksLauncher_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinFireworksLauncher.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinFireworksLauncher) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinFireworksLauncher_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) GetInvokeType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.InvokeType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) GetStartCountDownTime() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.StartCountDownTime
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) GetFiredBulletCount() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.FiredBulletCount
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) GetPhase() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Phase
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) GetFireworksConfig() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.FireworksConfig
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinFireworksLauncher) GetTurnIndex() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TurnIndex
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinFireworksLauncher_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinFireworksLauncher_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x23, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x46, 0x69,
|
|
||||||
0x72, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x65, 0x72, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x81, 0x02, 0x0a,
|
|
||||||
0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x46, 0x69, 0x72,
|
|
||||||
0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x4c, 0x61, 0x75, 0x6e, 0x63, 0x68, 0x65, 0x72, 0x12, 0x1f,
|
|
||||||
0x0a, 0x0b, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x0a, 0x69, 0x6e, 0x76, 0x6f, 0x6b, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
||||||
0x31, 0x0a, 0x15, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x64,
|
|
||||||
0x6f, 0x77, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12,
|
|
||||||
0x73, 0x74, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x6f, 0x77, 0x6e, 0x54, 0x69,
|
|
||||||
0x6d, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x66, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x62, 0x75, 0x6c, 0x6c,
|
|
||||||
0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10,
|
|
||||||
0x66, 0x69, 0x72, 0x65, 0x64, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74,
|
|
||||||
0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x69, 0x72, 0x65, 0x77, 0x6f,
|
|
||||||
0x72, 0x6b, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d,
|
|
||||||
0x52, 0x0f, 0x66, 0x69, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
||||||
0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18,
|
|
||||||
0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x74, 0x75, 0x72, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_rawDescData = file_AbilityMixinFireworksLauncher_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinFireworksLauncher_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinFireworksLauncher_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinFireworksLauncher_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinFireworksLauncher_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinFireworksLauncher_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinFireworksLauncher)(nil), // 0: proto.AbilityMixinFireworksLauncher
|
|
||||||
}
|
|
||||||
var file_AbilityMixinFireworksLauncher_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinFireworksLauncher_proto_init() }
|
|
||||||
func file_AbilityMixinFireworksLauncher_proto_init() {
|
|
||||||
if File_AbilityMixinFireworksLauncher_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinFireworksLauncher); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinFireworksLauncher_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinFireworksLauncher_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinFireworksLauncher_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinFireworksLauncher_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinFireworksLauncher_proto = out.File
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_goTypes = nil
|
|
||||||
file_AbilityMixinFireworksLauncher_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,211 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinGlobalShield.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinGlobalShield struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsCreateEffect bool `protobuf:"varint,4,opt,name=is_create_effect,json=isCreateEffect,proto3" json:"is_create_effect,omitempty"`
|
|
||||||
SubShield float32 `protobuf:"fixed32,7,opt,name=sub_shield,json=subShield,proto3" json:"sub_shield,omitempty"`
|
|
||||||
HeightOffset float32 `protobuf:"fixed32,5,opt,name=height_offset,json=heightOffset,proto3" json:"height_offset,omitempty"`
|
|
||||||
AvatarId uint32 `protobuf:"varint,11,opt,name=avatar_id,json=avatarId,proto3" json:"avatar_id,omitempty"`
|
|
||||||
MaxShield float32 `protobuf:"fixed32,10,opt,name=max_shield,json=maxShield,proto3" json:"max_shield,omitempty"`
|
|
||||||
ShieldEffectName string `protobuf:"bytes,2,opt,name=shield_effect_name,json=shieldEffectName,proto3" json:"shield_effect_name,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) Reset() {
|
|
||||||
*x = AbilityMixinGlobalShield{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinGlobalShield_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinGlobalShield) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinGlobalShield_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinGlobalShield.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinGlobalShield) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinGlobalShield_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) GetIsCreateEffect() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsCreateEffect
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) GetSubShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.SubShield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) GetHeightOffset() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.HeightOffset
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) GetAvatarId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AvatarId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) GetMaxShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.MaxShield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinGlobalShield) GetShieldEffectName() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.ShieldEffectName
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinGlobalShield_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinGlobalShield_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x47, 0x6c,
|
|
||||||
0x6f, 0x62, 0x61, 0x6c, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf2, 0x01, 0x0a, 0x18, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x68,
|
|
||||||
0x69, 0x65, 0x6c, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x69, 0x73, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74,
|
|
||||||
0x65, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e,
|
|
||||||
0x69, 0x73, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x12, 0x1d,
|
|
||||||
0x0a, 0x0a, 0x73, 0x75, 0x62, 0x5f, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x07, 0x20, 0x01,
|
|
||||||
0x28, 0x02, 0x52, 0x09, 0x73, 0x75, 0x62, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x23, 0x0a,
|
|
||||||
0x0d, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x05,
|
|
||||||
0x20, 0x01, 0x28, 0x02, 0x52, 0x0c, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x4f, 0x66, 0x66, 0x73,
|
|
||||||
0x65, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x5f, 0x69, 0x64, 0x18,
|
|
||||||
0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x12,
|
|
||||||
0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0a, 0x20,
|
|
||||||
0x01, 0x28, 0x02, 0x52, 0x09, 0x6d, 0x61, 0x78, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x2c,
|
|
||||||
0x0a, 0x12, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x5f,
|
|
||||||
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x73, 0x68, 0x69, 0x65,
|
|
||||||
0x6c, 0x64, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinGlobalShield_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinGlobalShield_proto_rawDescData = file_AbilityMixinGlobalShield_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinGlobalShield_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinGlobalShield_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinGlobalShield_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinGlobalShield_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinGlobalShield_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinGlobalShield_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinGlobalShield_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinGlobalShield)(nil), // 0: proto.AbilityMixinGlobalShield
|
|
||||||
}
|
|
||||||
var file_AbilityMixinGlobalShield_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinGlobalShield_proto_init() }
|
|
||||||
func file_AbilityMixinGlobalShield_proto_init() {
|
|
||||||
if File_AbilityMixinGlobalShield_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinGlobalShield_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinGlobalShield); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinGlobalShield_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinGlobalShield_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinGlobalShield_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinGlobalShield_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinGlobalShield_proto = out.File
|
|
||||||
file_AbilityMixinGlobalShield_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinGlobalShield_proto_goTypes = nil
|
|
||||||
file_AbilityMixinGlobalShield_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,251 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinRecoverInfo.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinRecoverInfo struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
LocalId uint32 `protobuf:"varint,3,opt,name=local_id,json=localId,proto3" json:"local_id,omitempty"`
|
|
||||||
DataList []uint32 `protobuf:"varint,4,rep,packed,name=data_list,json=dataList,proto3" json:"data_list,omitempty"`
|
|
||||||
IsServerbuffModifier bool `protobuf:"varint,5,opt,name=is_serverbuff_modifier,json=isServerbuffModifier,proto3" json:"is_serverbuff_modifier,omitempty"`
|
|
||||||
MassivePropList []*MassivePropSyncInfo `protobuf:"bytes,6,rep,name=massive_prop_list,json=massivePropList,proto3" json:"massive_prop_list,omitempty"`
|
|
||||||
// Types that are assignable to Source:
|
|
||||||
//
|
|
||||||
// *AbilityMixinRecoverInfo_InstancedAbilityId
|
|
||||||
// *AbilityMixinRecoverInfo_InstancedModifierId
|
|
||||||
Source isAbilityMixinRecoverInfo_Source `protobuf_oneof:"source"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) Reset() {
|
|
||||||
*x = AbilityMixinRecoverInfo{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinRecoverInfo_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinRecoverInfo) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinRecoverInfo_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinRecoverInfo.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinRecoverInfo) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinRecoverInfo_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) GetLocalId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.LocalId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) GetDataList() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.DataList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) GetIsServerbuffModifier() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsServerbuffModifier
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) GetMassivePropList() []*MassivePropSyncInfo {
|
|
||||||
if x != nil {
|
|
||||||
return x.MassivePropList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *AbilityMixinRecoverInfo) GetSource() isAbilityMixinRecoverInfo_Source {
|
|
||||||
if m != nil {
|
|
||||||
return m.Source
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) GetInstancedAbilityId() uint32 {
|
|
||||||
if x, ok := x.GetSource().(*AbilityMixinRecoverInfo_InstancedAbilityId); ok {
|
|
||||||
return x.InstancedAbilityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinRecoverInfo) GetInstancedModifierId() uint32 {
|
|
||||||
if x, ok := x.GetSource().(*AbilityMixinRecoverInfo_InstancedModifierId); ok {
|
|
||||||
return x.InstancedModifierId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
type isAbilityMixinRecoverInfo_Source interface {
|
|
||||||
isAbilityMixinRecoverInfo_Source()
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinRecoverInfo_InstancedAbilityId struct {
|
|
||||||
InstancedAbilityId uint32 `protobuf:"varint,1,opt,name=instanced_ability_id,json=instancedAbilityId,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinRecoverInfo_InstancedModifierId struct {
|
|
||||||
InstancedModifierId uint32 `protobuf:"varint,2,opt,name=instanced_modifier_id,json=instancedModifierId,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinRecoverInfo_InstancedAbilityId) isAbilityMixinRecoverInfo_Source() {}
|
|
||||||
|
|
||||||
func (*AbilityMixinRecoverInfo_InstancedModifierId) isAbilityMixinRecoverInfo_Source() {}
|
|
||||||
|
|
||||||
var File_AbilityMixinRecoverInfo_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinRecoverInfo_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x52, 0x65,
|
|
||||||
0x63, 0x6f, 0x76, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x4d, 0x61, 0x73, 0x73, 0x69, 0x76, 0x65, 0x50,
|
|
||||||
0x72, 0x6f, 0x70, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x22, 0xc3, 0x02, 0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78,
|
|
||||||
0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x0a,
|
|
||||||
0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x07, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61,
|
|
||||||
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x64, 0x61, 0x74,
|
|
||||||
0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x34, 0x0a, 0x16, 0x69, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76,
|
|
||||||
0x65, 0x72, 0x62, 0x75, 0x66, 0x66, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18,
|
|
||||||
0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x73, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x62,
|
|
||||||
0x75, 0x66, 0x66, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x46, 0x0a, 0x11, 0x6d,
|
|
||||||
0x61, 0x73, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x5f, 0x6c, 0x69, 0x73, 0x74,
|
|
||||||
0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d,
|
|
||||||
0x61, 0x73, 0x73, 0x69, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e,
|
|
||||||
0x66, 0x6f, 0x52, 0x0f, 0x6d, 0x61, 0x73, 0x73, 0x69, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x4c,
|
|
||||||
0x69, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x14, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64,
|
|
||||||
0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x48, 0x00, 0x52, 0x12, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x34, 0x0a, 0x15, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
||||||
0x6e, 0x63, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x69, 0x64,
|
|
||||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x13, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e,
|
|
||||||
0x63, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x49, 0x64, 0x42, 0x08, 0x0a,
|
|
||||||
0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinRecoverInfo_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinRecoverInfo_proto_rawDescData = file_AbilityMixinRecoverInfo_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinRecoverInfo_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinRecoverInfo_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinRecoverInfo_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinRecoverInfo_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinRecoverInfo_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinRecoverInfo_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinRecoverInfo_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinRecoverInfo)(nil), // 0: proto.AbilityMixinRecoverInfo
|
|
||||||
(*MassivePropSyncInfo)(nil), // 1: proto.MassivePropSyncInfo
|
|
||||||
}
|
|
||||||
var file_AbilityMixinRecoverInfo_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMixinRecoverInfo.massive_prop_list:type_name -> proto.MassivePropSyncInfo
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinRecoverInfo_proto_init() }
|
|
||||||
func file_AbilityMixinRecoverInfo_proto_init() {
|
|
||||||
if File_AbilityMixinRecoverInfo_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_MassivePropSyncInfo_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinRecoverInfo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinRecoverInfo); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityMixinRecoverInfo_proto_msgTypes[0].OneofWrappers = []interface{}{
|
|
||||||
(*AbilityMixinRecoverInfo_InstancedAbilityId)(nil),
|
|
||||||
(*AbilityMixinRecoverInfo_InstancedModifierId)(nil),
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinRecoverInfo_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinRecoverInfo_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinRecoverInfo_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinRecoverInfo_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinRecoverInfo_proto = out.File
|
|
||||||
file_AbilityMixinRecoverInfo_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinRecoverInfo_proto_goTypes = nil
|
|
||||||
file_AbilityMixinRecoverInfo_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,188 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinScenePropSync.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinScenePropSync struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
DeleteIdList []int64 `protobuf:"varint,5,rep,packed,name=delete_id_list,json=deleteIdList,proto3" json:"delete_id_list,omitempty"`
|
|
||||||
IsClearAll bool `protobuf:"varint,12,opt,name=is_clear_all,json=isClearAll,proto3" json:"is_clear_all,omitempty"`
|
|
||||||
MassivePropList []*MassivePropSyncInfo `protobuf:"bytes,15,rep,name=massive_prop_list,json=massivePropList,proto3" json:"massive_prop_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinScenePropSync) Reset() {
|
|
||||||
*x = AbilityMixinScenePropSync{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinScenePropSync_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinScenePropSync) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinScenePropSync) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinScenePropSync) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinScenePropSync_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinScenePropSync.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinScenePropSync) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinScenePropSync_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinScenePropSync) GetDeleteIdList() []int64 {
|
|
||||||
if x != nil {
|
|
||||||
return x.DeleteIdList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinScenePropSync) GetIsClearAll() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsClearAll
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinScenePropSync) GetMassivePropList() []*MassivePropSyncInfo {
|
|
||||||
if x != nil {
|
|
||||||
return x.MassivePropList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinScenePropSync_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinScenePropSync_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x53, 0x63,
|
|
||||||
0x65, 0x6e, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x53, 0x79, 0x6e, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x4d, 0x61, 0x73, 0x73, 0x69, 0x76,
|
|
||||||
0x65, 0x50, 0x72, 0x6f, 0x70, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x22, 0xab, 0x01, 0x0a, 0x19, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d,
|
|
||||||
0x69, 0x78, 0x69, 0x6e, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x53, 0x79, 0x6e,
|
|
||||||
0x63, 0x12, 0x24, 0x0a, 0x0e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x5f, 0x6c,
|
|
||||||
0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0c, 0x64, 0x65, 0x6c, 0x65, 0x74,
|
|
||||||
0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x63, 0x6c,
|
|
||||||
0x65, 0x61, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69,
|
|
||||||
0x73, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x41, 0x6c, 0x6c, 0x12, 0x46, 0x0a, 0x11, 0x6d, 0x61, 0x73,
|
|
||||||
0x73, 0x69, 0x76, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0f,
|
|
||||||
0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x61, 0x73,
|
|
||||||
0x73, 0x69, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x66, 0x6f,
|
|
||||||
0x52, 0x0f, 0x6d, 0x61, 0x73, 0x73, 0x69, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x4c, 0x69, 0x73,
|
|
||||||
0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinScenePropSync_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinScenePropSync_proto_rawDescData = file_AbilityMixinScenePropSync_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinScenePropSync_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinScenePropSync_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinScenePropSync_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinScenePropSync_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinScenePropSync_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinScenePropSync_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinScenePropSync_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinScenePropSync)(nil), // 0: proto.AbilityMixinScenePropSync
|
|
||||||
(*MassivePropSyncInfo)(nil), // 1: proto.MassivePropSyncInfo
|
|
||||||
}
|
|
||||||
var file_AbilityMixinScenePropSync_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMixinScenePropSync.massive_prop_list:type_name -> proto.MassivePropSyncInfo
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinScenePropSync_proto_init() }
|
|
||||||
func file_AbilityMixinScenePropSync_proto_init() {
|
|
||||||
if File_AbilityMixinScenePropSync_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_MassivePropSyncInfo_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinScenePropSync_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinScenePropSync); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinScenePropSync_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinScenePropSync_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinScenePropSync_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinScenePropSync_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinScenePropSync_proto = out.File
|
|
||||||
file_AbilityMixinScenePropSync_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinScenePropSync_proto_goTypes = nil
|
|
||||||
file_AbilityMixinScenePropSync_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,189 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinShieldBar.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinShieldBar struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
PlayerNum uint32 `protobuf:"varint,14,opt,name=player_num,json=playerNum,proto3" json:"player_num,omitempty"`
|
|
||||||
MaxShield float32 `protobuf:"fixed32,15,opt,name=max_shield,json=maxShield,proto3" json:"max_shield,omitempty"`
|
|
||||||
Shield float32 `protobuf:"fixed32,12,opt,name=shield,proto3" json:"shield,omitempty"`
|
|
||||||
ElementType uint32 `protobuf:"varint,13,opt,name=element_type,json=elementType,proto3" json:"element_type,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) Reset() {
|
|
||||||
*x = AbilityMixinShieldBar{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinShieldBar_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinShieldBar) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinShieldBar_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinShieldBar.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinShieldBar) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinShieldBar_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) GetPlayerNum() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.PlayerNum
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) GetMaxShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.MaxShield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) GetShield() float32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Shield
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShieldBar) GetElementType() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ElementType
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinShieldBar_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinShieldBar_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x53, 0x68,
|
|
||||||
0x69, 0x65, 0x6c, 0x64, 0x42, 0x61, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x90, 0x01, 0x0a, 0x15, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x4d, 0x69, 0x78, 0x69, 0x6e, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x61, 0x72, 0x12, 0x1d,
|
|
||||||
0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x0e, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x1d, 0x0a,
|
|
||||||
0x0a, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28,
|
|
||||||
0x02, 0x52, 0x09, 0x6d, 0x61, 0x78, 0x53, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x16, 0x0a, 0x06,
|
|
||||||
0x73, 0x68, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x02, 0x52, 0x06, 0x73, 0x68,
|
|
||||||
0x69, 0x65, 0x6c, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
|
|
||||||
0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x65, 0x6c, 0x65, 0x6d,
|
|
||||||
0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinShieldBar_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinShieldBar_proto_rawDescData = file_AbilityMixinShieldBar_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinShieldBar_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinShieldBar_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinShieldBar_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinShieldBar_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinShieldBar_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinShieldBar_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinShieldBar_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinShieldBar)(nil), // 0: proto.AbilityMixinShieldBar
|
|
||||||
}
|
|
||||||
var file_AbilityMixinShieldBar_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinShieldBar_proto_init() }
|
|
||||||
func file_AbilityMixinShieldBar_proto_init() {
|
|
||||||
if File_AbilityMixinShieldBar_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinShieldBar_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinShieldBar); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinShieldBar_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinShieldBar_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinShieldBar_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinShieldBar_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinShieldBar_proto = out.File
|
|
||||||
file_AbilityMixinShieldBar_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinShieldBar_proto_goTypes = nil
|
|
||||||
file_AbilityMixinShieldBar_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,176 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinShootFromCamera.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinShootFromCamera struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
InitPos *Vector `protobuf:"bytes,13,opt,name=init_pos,json=initPos,proto3" json:"init_pos,omitempty"`
|
|
||||||
Forward *Vector `protobuf:"bytes,2,opt,name=forward,proto3" json:"forward,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShootFromCamera) Reset() {
|
|
||||||
*x = AbilityMixinShootFromCamera{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinShootFromCamera_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShootFromCamera) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinShootFromCamera) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShootFromCamera) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinShootFromCamera_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinShootFromCamera.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinShootFromCamera) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinShootFromCamera_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShootFromCamera) GetInitPos() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.InitPos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinShootFromCamera) GetForward() *Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.Forward
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinShootFromCamera_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinShootFromCamera_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x53, 0x68,
|
|
||||||
0x6f, 0x6f, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74,
|
|
||||||
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x70, 0x0a, 0x1b, 0x41, 0x62, 0x69, 0x6c,
|
|
||||||
0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x53, 0x68, 0x6f, 0x6f, 0x74, 0x46, 0x72, 0x6f,
|
|
||||||
0x6d, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x12, 0x28, 0x0a, 0x08, 0x69, 0x6e, 0x69, 0x74, 0x5f,
|
|
||||||
0x70, 0x6f, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x07, 0x69, 0x6e, 0x69, 0x74, 0x50, 0x6f,
|
|
||||||
0x73, 0x12, 0x27, 0x0a, 0x07, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01,
|
|
||||||
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f,
|
|
||||||
0x72, 0x52, 0x07, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f,
|
|
||||||
0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinShootFromCamera_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinShootFromCamera_proto_rawDescData = file_AbilityMixinShootFromCamera_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinShootFromCamera_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinShootFromCamera_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinShootFromCamera_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinShootFromCamera_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinShootFromCamera_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinShootFromCamera_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinShootFromCamera_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinShootFromCamera)(nil), // 0: proto.AbilityMixinShootFromCamera
|
|
||||||
(*Vector)(nil), // 1: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityMixinShootFromCamera_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMixinShootFromCamera.init_pos:type_name -> proto.Vector
|
|
||||||
1, // 1: proto.AbilityMixinShootFromCamera.forward:type_name -> proto.Vector
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinShootFromCamera_proto_init() }
|
|
||||||
func file_AbilityMixinShootFromCamera_proto_init() {
|
|
||||||
if File_AbilityMixinShootFromCamera_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinShootFromCamera_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinShootFromCamera); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinShootFromCamera_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinShootFromCamera_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinShootFromCamera_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinShootFromCamera_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinShootFromCamera_proto = out.File
|
|
||||||
file_AbilityMixinShootFromCamera_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinShootFromCamera_proto_goTypes = nil
|
|
||||||
file_AbilityMixinShootFromCamera_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,171 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinUGCTimeControl.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinUGCTimeControl struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
StartMoveTimeMs uint64 `protobuf:"varint,13,opt,name=start_move_time_ms,json=startMoveTimeMs,proto3" json:"start_move_time_ms,omitempty"`
|
|
||||||
Forward uint32 `protobuf:"varint,3,opt,name=forward,proto3" json:"forward,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUGCTimeControl) Reset() {
|
|
||||||
*x = AbilityMixinUGCTimeControl{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinUGCTimeControl_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUGCTimeControl) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinUGCTimeControl) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUGCTimeControl) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinUGCTimeControl_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinUGCTimeControl.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinUGCTimeControl) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinUGCTimeControl_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUGCTimeControl) GetStartMoveTimeMs() uint64 {
|
|
||||||
if x != nil {
|
|
||||||
return x.StartMoveTimeMs
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUGCTimeControl) GetForward() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Forward
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinUGCTimeControl_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinUGCTimeControl_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x20, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x55, 0x47,
|
|
||||||
0x43, 0x54, 0x69, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x63, 0x0a, 0x1a, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x55, 0x47, 0x43, 0x54, 0x69, 0x6d, 0x65,
|
|
||||||
0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x2b, 0x0a, 0x12, 0x73, 0x74, 0x61, 0x72, 0x74,
|
|
||||||
0x5f, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x18, 0x0d, 0x20,
|
|
||||||
0x01, 0x28, 0x04, 0x52, 0x0f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4d, 0x6f, 0x76, 0x65, 0x54, 0x69,
|
|
||||||
0x6d, 0x65, 0x4d, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x18,
|
|
||||||
0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x42, 0x0a,
|
|
||||||
0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_rawDescData = file_AbilityMixinUGCTimeControl_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinUGCTimeControl_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinUGCTimeControl_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinUGCTimeControl_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinUGCTimeControl_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinUGCTimeControl_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinUGCTimeControl)(nil), // 0: proto.AbilityMixinUGCTimeControl
|
|
||||||
}
|
|
||||||
var file_AbilityMixinUGCTimeControl_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinUGCTimeControl_proto_init() }
|
|
||||||
func file_AbilityMixinUGCTimeControl_proto_init() {
|
|
||||||
if File_AbilityMixinUGCTimeControl_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinUGCTimeControl); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinUGCTimeControl_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinUGCTimeControl_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinUGCTimeControl_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinUGCTimeControl_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinUGCTimeControl_proto = out.File
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_goTypes = nil
|
|
||||||
file_AbilityMixinUGCTimeControl_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -21,5 +21,5 @@ option go_package = "./;proto";
|
|||||||
|
|
||||||
message AbilityMixinUGCTimeControl {
|
message AbilityMixinUGCTimeControl {
|
||||||
uint64 start_move_time_ms = 13;
|
uint64 start_move_time_ms = 13;
|
||||||
uint32 forward = 3;
|
uint32 start_move_time = 3;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,149 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinUIInteract.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinUIInteract struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUIInteract) Reset() {
|
|
||||||
*x = AbilityMixinUIInteract{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinUIInteract_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUIInteract) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinUIInteract) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinUIInteract) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinUIInteract_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinUIInteract.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinUIInteract) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinUIInteract_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinUIInteract_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinUIInteract_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x55, 0x49,
|
|
||||||
0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x18, 0x0a, 0x16, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x4d, 0x69, 0x78, 0x69, 0x6e, 0x55, 0x49, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x42,
|
|
||||||
0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinUIInteract_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinUIInteract_proto_rawDescData = file_AbilityMixinUIInteract_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinUIInteract_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinUIInteract_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinUIInteract_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinUIInteract_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinUIInteract_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinUIInteract_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinUIInteract_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinUIInteract)(nil), // 0: proto.AbilityMixinUIInteract
|
|
||||||
}
|
|
||||||
var file_AbilityMixinUIInteract_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinUIInteract_proto_init() }
|
|
||||||
func file_AbilityMixinUIInteract_proto_init() {
|
|
||||||
if File_AbilityMixinUIInteract_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinUIInteract_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinUIInteract); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinUIInteract_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinUIInteract_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinUIInteract_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinUIInteract_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinUIInteract_proto = out.File
|
|
||||||
file_AbilityMixinUIInteract_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinUIInteract_proto_goTypes = nil
|
|
||||||
file_AbilityMixinUIInteract_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,161 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinWidgetMpSupport.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinWidgetMpSupport struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
TargetEntityId uint32 `protobuf:"varint,9,opt,name=target_entity_id,json=targetEntityId,proto3" json:"target_entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWidgetMpSupport) Reset() {
|
|
||||||
*x = AbilityMixinWidgetMpSupport{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinWidgetMpSupport_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWidgetMpSupport) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWidgetMpSupport) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWidgetMpSupport) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinWidgetMpSupport_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinWidgetMpSupport.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinWidgetMpSupport) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinWidgetMpSupport_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWidgetMpSupport) GetTargetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TargetEntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinWidgetMpSupport_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinWidgetMpSupport_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x57, 0x69,
|
|
||||||
0x64, 0x67, 0x65, 0x74, 0x4d, 0x70, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x47, 0x0a, 0x1b, 0x41, 0x62,
|
|
||||||
0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74,
|
|
||||||
0x4d, 0x70, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x74, 0x61, 0x72,
|
|
||||||
0x67, 0x65, 0x74, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74,
|
|
||||||
0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
||||||
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_rawDescData = file_AbilityMixinWidgetMpSupport_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinWidgetMpSupport_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinWidgetMpSupport_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinWidgetMpSupport_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinWidgetMpSupport_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinWidgetMpSupport_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinWidgetMpSupport)(nil), // 0: proto.AbilityMixinWidgetMpSupport
|
|
||||||
}
|
|
||||||
var file_AbilityMixinWidgetMpSupport_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinWidgetMpSupport_proto_init() }
|
|
||||||
func file_AbilityMixinWidgetMpSupport_proto_init() {
|
|
||||||
if File_AbilityMixinWidgetMpSupport_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinWidgetMpSupport); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinWidgetMpSupport_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinWidgetMpSupport_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinWidgetMpSupport_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinWidgetMpSupport_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinWidgetMpSupport_proto = out.File
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_goTypes = nil
|
|
||||||
file_AbilityMixinWidgetMpSupport_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,412 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinWindSeedSpawner.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
// Types that are assignable to Cmd:
|
|
||||||
//
|
|
||||||
// *AbilityMixinWindSeedSpawner_AddSignal_
|
|
||||||
// *AbilityMixinWindSeedSpawner_RefreshSeed_
|
|
||||||
// *AbilityMixinWindSeedSpawner_CatchSeed_
|
|
||||||
Cmd isAbilityMixinWindSeedSpawner_Cmd `protobuf_oneof:"cmd"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner) Reset() {
|
|
||||||
*x = AbilityMixinWindSeedSpawner{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinWindSeedSpawner.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinWindSeedSpawner) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinWindSeedSpawner_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *AbilityMixinWindSeedSpawner) GetCmd() isAbilityMixinWindSeedSpawner_Cmd {
|
|
||||||
if m != nil {
|
|
||||||
return m.Cmd
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner) GetAddSignal() *AbilityMixinWindSeedSpawner_AddSignal {
|
|
||||||
if x, ok := x.GetCmd().(*AbilityMixinWindSeedSpawner_AddSignal_); ok {
|
|
||||||
return x.AddSignal
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner) GetRefreshSeed() *AbilityMixinWindSeedSpawner_RefreshSeed {
|
|
||||||
if x, ok := x.GetCmd().(*AbilityMixinWindSeedSpawner_RefreshSeed_); ok {
|
|
||||||
return x.RefreshSeed
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner) GetCatchSeed() *AbilityMixinWindSeedSpawner_CatchSeed {
|
|
||||||
if x, ok := x.GetCmd().(*AbilityMixinWindSeedSpawner_CatchSeed_); ok {
|
|
||||||
return x.CatchSeed
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type isAbilityMixinWindSeedSpawner_Cmd interface {
|
|
||||||
isAbilityMixinWindSeedSpawner_Cmd()
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner_AddSignal_ struct {
|
|
||||||
AddSignal *AbilityMixinWindSeedSpawner_AddSignal `protobuf:"bytes,2,opt,name=add_signal,json=addSignal,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner_RefreshSeed_ struct {
|
|
||||||
RefreshSeed *AbilityMixinWindSeedSpawner_RefreshSeed `protobuf:"bytes,15,opt,name=refresh_seed,json=refreshSeed,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner_CatchSeed_ struct {
|
|
||||||
CatchSeed *AbilityMixinWindSeedSpawner_CatchSeed `protobuf:"bytes,11,opt,name=catch_seed,json=catchSeed,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner_AddSignal_) isAbilityMixinWindSeedSpawner_Cmd() {}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner_RefreshSeed_) isAbilityMixinWindSeedSpawner_Cmd() {}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner_CatchSeed_) isAbilityMixinWindSeedSpawner_Cmd() {}
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner_AddSignal struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_AddSignal) Reset() {
|
|
||||||
*x = AbilityMixinWindSeedSpawner_AddSignal{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[1]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_AddSignal) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner_AddSignal) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_AddSignal) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[1]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinWindSeedSpawner_AddSignal.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinWindSeedSpawner_AddSignal) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinWindSeedSpawner_proto_rawDescGZIP(), []int{0, 0}
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner_RefreshSeed struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
PosList []*Vector `protobuf:"bytes,6,rep,name=pos_list,json=posList,proto3" json:"pos_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_RefreshSeed) Reset() {
|
|
||||||
*x = AbilityMixinWindSeedSpawner_RefreshSeed{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[2]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_RefreshSeed) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner_RefreshSeed) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_RefreshSeed) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[2]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinWindSeedSpawner_RefreshSeed.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinWindSeedSpawner_RefreshSeed) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinWindSeedSpawner_proto_rawDescGZIP(), []int{0, 1}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_RefreshSeed) GetPosList() []*Vector {
|
|
||||||
if x != nil {
|
|
||||||
return x.PosList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityMixinWindSeedSpawner_CatchSeed struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
EntityId uint32 `protobuf:"varint,8,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_CatchSeed) Reset() {
|
|
||||||
*x = AbilityMixinWindSeedSpawner_CatchSeed{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[3]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_CatchSeed) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindSeedSpawner_CatchSeed) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_CatchSeed) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinWindSeedSpawner_proto_msgTypes[3]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinWindSeedSpawner_CatchSeed.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinWindSeedSpawner_CatchSeed) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinWindSeedSpawner_proto_rawDescGZIP(), []int{0, 2}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindSeedSpawner_CatchSeed) GetEntityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EntityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinWindSeedSpawner_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinWindSeedSpawner_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x21, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x57, 0x69,
|
|
||||||
0x6e, 0x64, 0x53, 0x65, 0x65, 0x64, 0x53, 0x70, 0x61, 0x77, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x56, 0x65, 0x63, 0x74,
|
|
||||||
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x87, 0x03, 0x0a, 0x1b, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x53, 0x65, 0x65,
|
|
||||||
0x64, 0x53, 0x70, 0x61, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x4d, 0x0a, 0x0a, 0x61, 0x64, 0x64, 0x5f,
|
|
||||||
0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69,
|
|
||||||
0x6e, 0x57, 0x69, 0x6e, 0x64, 0x53, 0x65, 0x65, 0x64, 0x53, 0x70, 0x61, 0x77, 0x6e, 0x65, 0x72,
|
|
||||||
0x2e, 0x41, 0x64, 0x64, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x09, 0x61, 0x64,
|
|
||||||
0x64, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x12, 0x53, 0x0a, 0x0c, 0x72, 0x65, 0x66, 0x72, 0x65,
|
|
||||||
0x73, 0x68, 0x5f, 0x73, 0x65, 0x65, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78,
|
|
||||||
0x69, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x53, 0x65, 0x65, 0x64, 0x53, 0x70, 0x61, 0x77, 0x6e, 0x65,
|
|
||||||
0x72, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x65, 0x65, 0x64, 0x48, 0x00, 0x52,
|
|
||||||
0x0b, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x65, 0x65, 0x64, 0x12, 0x4d, 0x0a, 0x0a,
|
|
||||||
0x63, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x65, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b,
|
|
||||||
0x32, 0x2c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x4d, 0x69, 0x78, 0x69, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x53, 0x65, 0x65, 0x64, 0x53, 0x70, 0x61,
|
|
||||||
0x77, 0x6e, 0x65, 0x72, 0x2e, 0x43, 0x61, 0x74, 0x63, 0x68, 0x53, 0x65, 0x65, 0x64, 0x48, 0x00,
|
|
||||||
0x52, 0x09, 0x63, 0x61, 0x74, 0x63, 0x68, 0x53, 0x65, 0x65, 0x64, 0x1a, 0x0b, 0x0a, 0x09, 0x41,
|
|
||||||
0x64, 0x64, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x1a, 0x37, 0x0a, 0x0b, 0x52, 0x65, 0x66, 0x72,
|
|
||||||
0x65, 0x73, 0x68, 0x53, 0x65, 0x65, 0x64, 0x12, 0x28, 0x0a, 0x08, 0x70, 0x6f, 0x73, 0x5f, 0x6c,
|
|
||||||
0x69, 0x73, 0x74, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x73, 0x4c, 0x69, 0x73,
|
|
||||||
0x74, 0x1a, 0x28, 0x0a, 0x09, 0x43, 0x61, 0x74, 0x63, 0x68, 0x53, 0x65, 0x65, 0x64, 0x12, 0x1b,
|
|
||||||
0x0a, 0x09, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x42, 0x05, 0x0a, 0x03, 0x63,
|
|
||||||
0x6d, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_rawDescData = file_AbilityMixinWindSeedSpawner_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinWindSeedSpawner_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinWindSeedSpawner_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinWindSeedSpawner_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinWindSeedSpawner_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
|
||||||
var file_AbilityMixinWindSeedSpawner_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinWindSeedSpawner)(nil), // 0: proto.AbilityMixinWindSeedSpawner
|
|
||||||
(*AbilityMixinWindSeedSpawner_AddSignal)(nil), // 1: proto.AbilityMixinWindSeedSpawner.AddSignal
|
|
||||||
(*AbilityMixinWindSeedSpawner_RefreshSeed)(nil), // 2: proto.AbilityMixinWindSeedSpawner.RefreshSeed
|
|
||||||
(*AbilityMixinWindSeedSpawner_CatchSeed)(nil), // 3: proto.AbilityMixinWindSeedSpawner.CatchSeed
|
|
||||||
(*Vector)(nil), // 4: proto.Vector
|
|
||||||
}
|
|
||||||
var file_AbilityMixinWindSeedSpawner_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityMixinWindSeedSpawner.add_signal:type_name -> proto.AbilityMixinWindSeedSpawner.AddSignal
|
|
||||||
2, // 1: proto.AbilityMixinWindSeedSpawner.refresh_seed:type_name -> proto.AbilityMixinWindSeedSpawner.RefreshSeed
|
|
||||||
3, // 2: proto.AbilityMixinWindSeedSpawner.catch_seed:type_name -> proto.AbilityMixinWindSeedSpawner.CatchSeed
|
|
||||||
4, // 3: proto.AbilityMixinWindSeedSpawner.RefreshSeed.pos_list:type_name -> proto.Vector
|
|
||||||
4, // [4:4] is the sub-list for method output_type
|
|
||||||
4, // [4:4] is the sub-list for method input_type
|
|
||||||
4, // [4:4] is the sub-list for extension type_name
|
|
||||||
4, // [4:4] is the sub-list for extension extendee
|
|
||||||
0, // [0:4] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinWindSeedSpawner_proto_init() }
|
|
||||||
func file_AbilityMixinWindSeedSpawner_proto_init() {
|
|
||||||
if File_AbilityMixinWindSeedSpawner_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Vector_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinWindSeedSpawner); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinWindSeedSpawner_AddSignal); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinWindSeedSpawner_RefreshSeed); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinWindSeedSpawner_CatchSeed); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_msgTypes[0].OneofWrappers = []interface{}{
|
|
||||||
(*AbilityMixinWindSeedSpawner_AddSignal_)(nil),
|
|
||||||
(*AbilityMixinWindSeedSpawner_RefreshSeed_)(nil),
|
|
||||||
(*AbilityMixinWindSeedSpawner_CatchSeed_)(nil),
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinWindSeedSpawner_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 4,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinWindSeedSpawner_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinWindSeedSpawner_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinWindSeedSpawner_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinWindSeedSpawner_proto = out.File
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_goTypes = nil
|
|
||||||
file_AbilityMixinWindSeedSpawner_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,169 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityMixinWindZone.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityMixinWindZone struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
EntityIds []uint32 `protobuf:"varint,13,rep,packed,name=entity_ids,json=entityIds,proto3" json:"entity_ids,omitempty"`
|
|
||||||
ZoneIdList []uint32 `protobuf:"varint,10,rep,packed,name=zone_id_list,json=zoneIdList,proto3" json:"zone_id_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindZone) Reset() {
|
|
||||||
*x = AbilityMixinWindZone{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityMixinWindZone_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindZone) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityMixinWindZone) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindZone) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityMixinWindZone_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityMixinWindZone.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityMixinWindZone) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityMixinWindZone_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindZone) GetEntityIds() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.EntityIds
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityMixinWindZone) GetZoneIdList() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ZoneIdList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityMixinWindZone_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityMixinWindZone_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1a, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x57, 0x69,
|
|
||||||
0x6e, 0x64, 0x5a, 0x6f, 0x6e, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x22, 0x57, 0x0a, 0x14, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69,
|
|
||||||
0x78, 0x69, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
|
|
||||||
0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0d, 0x52,
|
|
||||||
0x09, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x7a, 0x6f,
|
|
||||||
0x6e, 0x65, 0x5f, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0d,
|
|
||||||
0x52, 0x0a, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityMixinWindZone_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityMixinWindZone_proto_rawDescData = file_AbilityMixinWindZone_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityMixinWindZone_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityMixinWindZone_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityMixinWindZone_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityMixinWindZone_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityMixinWindZone_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityMixinWindZone_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityMixinWindZone_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityMixinWindZone)(nil), // 0: proto.AbilityMixinWindZone
|
|
||||||
}
|
|
||||||
var file_AbilityMixinWindZone_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityMixinWindZone_proto_init() }
|
|
||||||
func file_AbilityMixinWindZone_proto_init() {
|
|
||||||
if File_AbilityMixinWindZone_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityMixinWindZone_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityMixinWindZone); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityMixinWindZone_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityMixinWindZone_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityMixinWindZone_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityMixinWindZone_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityMixinWindZone_proto = out.File
|
|
||||||
file_AbilityMixinWindZone_proto_rawDesc = nil
|
|
||||||
file_AbilityMixinWindZone_proto_goTypes = nil
|
|
||||||
file_AbilityMixinWindZone_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,171 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityScalarType.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityScalarType int32
|
|
||||||
|
|
||||||
const (
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_UNKNOWN AbilityScalarType = 0
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_FLOAT AbilityScalarType = 1
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_INT AbilityScalarType = 2
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_BOOL AbilityScalarType = 3
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_TRIGGER AbilityScalarType = 4
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_STRING AbilityScalarType = 5
|
|
||||||
AbilityScalarType_ABILITY_SCALAR_TYPE_UINT AbilityScalarType = 6
|
|
||||||
)
|
|
||||||
|
|
||||||
// Enum value maps for AbilityScalarType.
|
|
||||||
var (
|
|
||||||
AbilityScalarType_name = map[int32]string{
|
|
||||||
0: "ABILITY_SCALAR_TYPE_UNKNOWN",
|
|
||||||
1: "ABILITY_SCALAR_TYPE_FLOAT",
|
|
||||||
2: "ABILITY_SCALAR_TYPE_INT",
|
|
||||||
3: "ABILITY_SCALAR_TYPE_BOOL",
|
|
||||||
4: "ABILITY_SCALAR_TYPE_TRIGGER",
|
|
||||||
5: "ABILITY_SCALAR_TYPE_STRING",
|
|
||||||
6: "ABILITY_SCALAR_TYPE_UINT",
|
|
||||||
}
|
|
||||||
AbilityScalarType_value = map[string]int32{
|
|
||||||
"ABILITY_SCALAR_TYPE_UNKNOWN": 0,
|
|
||||||
"ABILITY_SCALAR_TYPE_FLOAT": 1,
|
|
||||||
"ABILITY_SCALAR_TYPE_INT": 2,
|
|
||||||
"ABILITY_SCALAR_TYPE_BOOL": 3,
|
|
||||||
"ABILITY_SCALAR_TYPE_TRIGGER": 4,
|
|
||||||
"ABILITY_SCALAR_TYPE_STRING": 5,
|
|
||||||
"ABILITY_SCALAR_TYPE_UINT": 6,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
func (x AbilityScalarType) Enum() *AbilityScalarType {
|
|
||||||
p := new(AbilityScalarType)
|
|
||||||
*p = x
|
|
||||||
return p
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x AbilityScalarType) String() string {
|
|
||||||
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (AbilityScalarType) Descriptor() protoreflect.EnumDescriptor {
|
|
||||||
return file_AbilityScalarType_proto_enumTypes[0].Descriptor()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (AbilityScalarType) Type() protoreflect.EnumType {
|
|
||||||
return &file_AbilityScalarType_proto_enumTypes[0]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x AbilityScalarType) Number() protoreflect.EnumNumber {
|
|
||||||
return protoreflect.EnumNumber(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityScalarType.Descriptor instead.
|
|
||||||
func (AbilityScalarType) EnumDescriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityScalarType_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilityScalarType_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityScalarType_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x54,
|
|
||||||
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x2a, 0xed, 0x01, 0x0a, 0x11, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c,
|
|
||||||
0x61, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x1b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x53, 0x43, 0x41, 0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e,
|
|
||||||
0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x41, 0x42, 0x49, 0x4c, 0x49,
|
|
||||||
0x54, 0x59, 0x5f, 0x53, 0x43, 0x41, 0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x46,
|
|
||||||
0x4c, 0x4f, 0x41, 0x54, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
|
||||||
0x59, 0x5f, 0x53, 0x43, 0x41, 0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x49, 0x4e,
|
|
||||||
0x54, 0x10, 0x02, 0x12, 0x1c, 0x0a, 0x18, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x53,
|
|
||||||
0x43, 0x41, 0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x42, 0x4f, 0x4f, 0x4c, 0x10,
|
|
||||||
0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x53, 0x43, 0x41,
|
|
||||||
0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x54, 0x52, 0x49, 0x47, 0x47, 0x45, 0x52,
|
|
||||||
0x10, 0x04, 0x12, 0x1e, 0x0a, 0x1a, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x53, 0x43,
|
|
||||||
0x41, 0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47,
|
|
||||||
0x10, 0x05, 0x12, 0x1c, 0x0a, 0x18, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x53, 0x43,
|
|
||||||
0x41, 0x4c, 0x41, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x10, 0x06,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityScalarType_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityScalarType_proto_rawDescData = file_AbilityScalarType_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityScalarType_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityScalarType_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityScalarType_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityScalarType_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityScalarType_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityScalarType_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
||||||
var file_AbilityScalarType_proto_goTypes = []interface{}{
|
|
||||||
(AbilityScalarType)(0), // 0: proto.AbilityScalarType
|
|
||||||
}
|
|
||||||
var file_AbilityScalarType_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityScalarType_proto_init() }
|
|
||||||
func file_AbilityScalarType_proto_init() {
|
|
||||||
if File_AbilityScalarType_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityScalarType_proto_rawDesc,
|
|
||||||
NumEnums: 1,
|
|
||||||
NumMessages: 0,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityScalarType_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityScalarType_proto_depIdxs,
|
|
||||||
EnumInfos: file_AbilityScalarType_proto_enumTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityScalarType_proto = out.File
|
|
||||||
file_AbilityScalarType_proto_rawDesc = nil
|
|
||||||
file_AbilityScalarType_proto_goTypes = nil
|
|
||||||
file_AbilityScalarType_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,266 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityScalarValueEntry.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityScalarValueEntry struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Key *AbilityString `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
||||||
ValueType AbilityScalarType `protobuf:"varint,2,opt,name=value_type,json=valueType,proto3,enum=proto.AbilityScalarType" json:"value_type,omitempty"`
|
|
||||||
// Types that are assignable to Value:
|
|
||||||
//
|
|
||||||
// *AbilityScalarValueEntry_FloatValue
|
|
||||||
// *AbilityScalarValueEntry_StringValue
|
|
||||||
// *AbilityScalarValueEntry_IntValue
|
|
||||||
// *AbilityScalarValueEntry_UintValue
|
|
||||||
Value isAbilityScalarValueEntry_Value `protobuf_oneof:"value"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) Reset() {
|
|
||||||
*x = AbilityScalarValueEntry{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityScalarValueEntry_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityScalarValueEntry) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityScalarValueEntry_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityScalarValueEntry.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityScalarValueEntry) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityScalarValueEntry_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) GetKey() *AbilityString {
|
|
||||||
if x != nil {
|
|
||||||
return x.Key
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) GetValueType() AbilityScalarType {
|
|
||||||
if x != nil {
|
|
||||||
return x.ValueType
|
|
||||||
}
|
|
||||||
return AbilityScalarType_ABILITY_SCALAR_TYPE_UNKNOWN
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *AbilityScalarValueEntry) GetValue() isAbilityScalarValueEntry_Value {
|
|
||||||
if m != nil {
|
|
||||||
return m.Value
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) GetFloatValue() float32 {
|
|
||||||
if x, ok := x.GetValue().(*AbilityScalarValueEntry_FloatValue); ok {
|
|
||||||
return x.FloatValue
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) GetStringValue() string {
|
|
||||||
if x, ok := x.GetValue().(*AbilityScalarValueEntry_StringValue); ok {
|
|
||||||
return x.StringValue
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) GetIntValue() int32 {
|
|
||||||
if x, ok := x.GetValue().(*AbilityScalarValueEntry_IntValue); ok {
|
|
||||||
return x.IntValue
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityScalarValueEntry) GetUintValue() uint32 {
|
|
||||||
if x, ok := x.GetValue().(*AbilityScalarValueEntry_UintValue); ok {
|
|
||||||
return x.UintValue
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
type isAbilityScalarValueEntry_Value interface {
|
|
||||||
isAbilityScalarValueEntry_Value()
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityScalarValueEntry_FloatValue struct {
|
|
||||||
FloatValue float32 `protobuf:"fixed32,3,opt,name=float_value,json=floatValue,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityScalarValueEntry_StringValue struct {
|
|
||||||
StringValue string `protobuf:"bytes,4,opt,name=string_value,json=stringValue,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityScalarValueEntry_IntValue struct {
|
|
||||||
IntValue int32 `protobuf:"varint,5,opt,name=int_value,json=intValue,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityScalarValueEntry_UintValue struct {
|
|
||||||
UintValue uint32 `protobuf:"varint,6,opt,name=uint_value,json=uintValue,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityScalarValueEntry_FloatValue) isAbilityScalarValueEntry_Value() {}
|
|
||||||
|
|
||||||
func (*AbilityScalarValueEntry_StringValue) isAbilityScalarValueEntry_Value() {}
|
|
||||||
|
|
||||||
func (*AbilityScalarValueEntry_IntValue) isAbilityScalarValueEntry_Value() {}
|
|
||||||
|
|
||||||
func (*AbilityScalarValueEntry_UintValue) isAbilityScalarValueEntry_Value() {}
|
|
||||||
|
|
||||||
var File_AbilityScalarValueEntry_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityScalarValueEntry_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56,
|
|
||||||
0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53,
|
|
||||||
0x63, 0x61, 0x6c, 0x61, 0x72, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
|
|
||||||
0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8b, 0x02, 0x0a, 0x17, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
||||||
0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
|
||||||
0x12, 0x26, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72,
|
|
||||||
0x69, 0x6e, 0x67, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x37, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x75,
|
|
||||||
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c,
|
|
||||||
0x61, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x54, 0x79, 0x70,
|
|
||||||
0x65, 0x12, 0x21, 0x0a, 0x0b, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
|
||||||
0x18, 0x03, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, 0x0a, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x56,
|
|
||||||
0x61, 0x6c, 0x75, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x76,
|
|
||||||
0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x73, 0x74,
|
|
||||||
0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1d, 0x0a, 0x09, 0x69, 0x6e, 0x74,
|
|
||||||
0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x08,
|
|
||||||
0x69, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1f, 0x0a, 0x0a, 0x75, 0x69, 0x6e, 0x74,
|
|
||||||
0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x09,
|
|
||||||
0x75, 0x69, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c,
|
|
||||||
0x75, 0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityScalarValueEntry_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityScalarValueEntry_proto_rawDescData = file_AbilityScalarValueEntry_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityScalarValueEntry_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityScalarValueEntry_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityScalarValueEntry_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityScalarValueEntry_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityScalarValueEntry_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityScalarValueEntry_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityScalarValueEntry_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityScalarValueEntry)(nil), // 0: proto.AbilityScalarValueEntry
|
|
||||||
(*AbilityString)(nil), // 1: proto.AbilityString
|
|
||||||
(AbilityScalarType)(0), // 2: proto.AbilityScalarType
|
|
||||||
}
|
|
||||||
var file_AbilityScalarValueEntry_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilityScalarValueEntry.key:type_name -> proto.AbilityString
|
|
||||||
2, // 1: proto.AbilityScalarValueEntry.value_type:type_name -> proto.AbilityScalarType
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityScalarValueEntry_proto_init() }
|
|
||||||
func file_AbilityScalarValueEntry_proto_init() {
|
|
||||||
if File_AbilityScalarValueEntry_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityScalarType_proto_init()
|
|
||||||
file_AbilityString_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityScalarValueEntry_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityScalarValueEntry); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityScalarValueEntry_proto_msgTypes[0].OneofWrappers = []interface{}{
|
|
||||||
(*AbilityScalarValueEntry_FloatValue)(nil),
|
|
||||||
(*AbilityScalarValueEntry_StringValue)(nil),
|
|
||||||
(*AbilityScalarValueEntry_IntValue)(nil),
|
|
||||||
(*AbilityScalarValueEntry_UintValue)(nil),
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityScalarValueEntry_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityScalarValueEntry_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityScalarValueEntry_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityScalarValueEntry_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityScalarValueEntry_proto = out.File
|
|
||||||
file_AbilityScalarValueEntry_proto_rawDesc = nil
|
|
||||||
file_AbilityScalarValueEntry_proto_goTypes = nil
|
|
||||||
file_AbilityScalarValueEntry_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,198 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilityString.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilityString struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
// Types that are assignable to Type:
|
|
||||||
//
|
|
||||||
// *AbilityString_Str
|
|
||||||
// *AbilityString_Hash
|
|
||||||
Type isAbilityString_Type `protobuf_oneof:"type"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityString) Reset() {
|
|
||||||
*x = AbilityString{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilityString_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityString) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityString) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilityString) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilityString_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilityString.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilityString) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilityString_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *AbilityString) GetType() isAbilityString_Type {
|
|
||||||
if m != nil {
|
|
||||||
return m.Type
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityString) GetStr() string {
|
|
||||||
if x, ok := x.GetType().(*AbilityString_Str); ok {
|
|
||||||
return x.Str
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilityString) GetHash() uint32 {
|
|
||||||
if x, ok := x.GetType().(*AbilityString_Hash); ok {
|
|
||||||
return x.Hash
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
type isAbilityString_Type interface {
|
|
||||||
isAbilityString_Type()
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityString_Str struct {
|
|
||||||
Str string `protobuf:"bytes,1,opt,name=str,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AbilityString_Hash struct {
|
|
||||||
Hash uint32 `protobuf:"varint,2,opt,name=hash,proto3,oneof"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilityString_Str) isAbilityString_Type() {}
|
|
||||||
|
|
||||||
func (*AbilityString_Hash) isAbilityString_Type() {}
|
|
||||||
|
|
||||||
var File_AbilityString_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilityString_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x13, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x41, 0x0a, 0x0d,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x0a,
|
|
||||||
0x03, 0x73, 0x74, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x03, 0x73, 0x74,
|
|
||||||
0x72, 0x12, 0x14, 0x0a, 0x04, 0x68, 0x61, 0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48,
|
|
||||||
0x00, 0x52, 0x04, 0x68, 0x61, 0x73, 0x68, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x42,
|
|
||||||
0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilityString_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilityString_proto_rawDescData = file_AbilityString_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilityString_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilityString_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilityString_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilityString_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilityString_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilityString_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilityString_proto_goTypes = []interface{}{
|
|
||||||
(*AbilityString)(nil), // 0: proto.AbilityString
|
|
||||||
}
|
|
||||||
var file_AbilityString_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilityString_proto_init() }
|
|
||||||
func file_AbilityString_proto_init() {
|
|
||||||
if File_AbilityString_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilityString_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilityString); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_AbilityString_proto_msgTypes[0].OneofWrappers = []interface{}{
|
|
||||||
(*AbilityString_Str)(nil),
|
|
||||||
(*AbilityString_Hash)(nil),
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilityString_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilityString_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilityString_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilityString_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilityString_proto = out.File
|
|
||||||
file_AbilityString_proto_rawDesc = nil
|
|
||||||
file_AbilityString_proto_goTypes = nil
|
|
||||||
file_AbilityString_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,244 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AbilitySyncStateInfo.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type AbilitySyncStateInfo struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsInited bool `protobuf:"varint,1,opt,name=is_inited,json=isInited,proto3" json:"is_inited,omitempty"`
|
|
||||||
DynamicValueMap []*AbilityScalarValueEntry `protobuf:"bytes,2,rep,name=dynamic_value_map,json=dynamicValueMap,proto3" json:"dynamic_value_map,omitempty"`
|
|
||||||
AppliedAbilities []*AbilityAppliedAbility `protobuf:"bytes,3,rep,name=applied_abilities,json=appliedAbilities,proto3" json:"applied_abilities,omitempty"`
|
|
||||||
AppliedModifiers []*AbilityAppliedModifier `protobuf:"bytes,4,rep,name=applied_modifiers,json=appliedModifiers,proto3" json:"applied_modifiers,omitempty"`
|
|
||||||
MixinRecoverInfos []*AbilityMixinRecoverInfo `protobuf:"bytes,5,rep,name=mixin_recover_infos,json=mixinRecoverInfos,proto3" json:"mixin_recover_infos,omitempty"`
|
|
||||||
SgvDynamicValueMap []*AbilityScalarValueEntry `protobuf:"bytes,6,rep,name=sgv_dynamic_value_map,json=sgvDynamicValueMap,proto3" json:"sgv_dynamic_value_map,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) Reset() {
|
|
||||||
*x = AbilitySyncStateInfo{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AbilitySyncStateInfo_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AbilitySyncStateInfo) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AbilitySyncStateInfo_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AbilitySyncStateInfo.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AbilitySyncStateInfo) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AbilitySyncStateInfo_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) GetIsInited() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsInited
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) GetDynamicValueMap() []*AbilityScalarValueEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.DynamicValueMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) GetAppliedAbilities() []*AbilityAppliedAbility {
|
|
||||||
if x != nil {
|
|
||||||
return x.AppliedAbilities
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) GetAppliedModifiers() []*AbilityAppliedModifier {
|
|
||||||
if x != nil {
|
|
||||||
return x.AppliedModifiers
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) GetMixinRecoverInfos() []*AbilityMixinRecoverInfo {
|
|
||||||
if x != nil {
|
|
||||||
return x.MixinRecoverInfos
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AbilitySyncStateInfo) GetSgvDynamicValueMap() []*AbilityScalarValueEntry {
|
|
||||||
if x != nil {
|
|
||||||
return x.SgvDynamicValueMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AbilitySyncStateInfo_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AbilitySyncStateInfo_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1a, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61,
|
|
||||||
0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c,
|
|
||||||
0x69, 0x65, 0x64, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x1a, 0x1c, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64,
|
|
||||||
0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f,
|
|
||||||
0x76, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x41,
|
|
||||||
0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75,
|
|
||||||
0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb9, 0x03, 0x0a,
|
|
||||||
0x14, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74,
|
|
||||||
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x69, 0x6e, 0x69, 0x74,
|
|
||||||
0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x49, 0x6e, 0x69, 0x74,
|
|
||||||
0x65, 0x64, 0x12, 0x4a, 0x0a, 0x11, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x5f, 0x76, 0x61,
|
|
||||||
0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61,
|
|
||||||
0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x64,
|
|
||||||
0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x4d, 0x61, 0x70, 0x12, 0x49,
|
|
||||||
0x0a, 0x11, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x5f, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
|
|
||||||
0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64,
|
|
||||||
0x41, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x4a, 0x0a, 0x11, 0x61, 0x70, 0x70,
|
|
||||||
0x6c, 0x69, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x18, 0x04,
|
|
||||||
0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66,
|
|
||||||
0x69, 0x65, 0x72, 0x52, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x69,
|
|
||||||
0x66, 0x69, 0x65, 0x72, 0x73, 0x12, 0x4e, 0x0a, 0x13, 0x6d, 0x69, 0x78, 0x69, 0x6e, 0x5f, 0x72,
|
|
||||||
0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73, 0x18, 0x05, 0x20, 0x03,
|
|
||||||
0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69, 0x6c, 0x69,
|
|
||||||
0x74, 0x79, 0x4d, 0x69, 0x78, 0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x49, 0x6e,
|
|
||||||
0x66, 0x6f, 0x52, 0x11, 0x6d, 0x69, 0x78, 0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72,
|
|
||||||
0x49, 0x6e, 0x66, 0x6f, 0x73, 0x12, 0x51, 0x0a, 0x15, 0x73, 0x67, 0x76, 0x5f, 0x64, 0x79, 0x6e,
|
|
||||||
0x61, 0x6d, 0x69, 0x63, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x06,
|
|
||||||
0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x62, 0x69,
|
|
||||||
0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x52, 0x12, 0x73, 0x67, 0x76, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63,
|
|
||||||
0x56, 0x61, 0x6c, 0x75, 0x65, 0x4d, 0x61, 0x70, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AbilitySyncStateInfo_proto_rawDescOnce sync.Once
|
|
||||||
file_AbilitySyncStateInfo_proto_rawDescData = file_AbilitySyncStateInfo_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AbilitySyncStateInfo_proto_rawDescGZIP() []byte {
|
|
||||||
file_AbilitySyncStateInfo_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AbilitySyncStateInfo_proto_rawDescData = protoimpl.X.CompressGZIP(file_AbilitySyncStateInfo_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AbilitySyncStateInfo_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AbilitySyncStateInfo_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AbilitySyncStateInfo_proto_goTypes = []interface{}{
|
|
||||||
(*AbilitySyncStateInfo)(nil), // 0: proto.AbilitySyncStateInfo
|
|
||||||
(*AbilityScalarValueEntry)(nil), // 1: proto.AbilityScalarValueEntry
|
|
||||||
(*AbilityAppliedAbility)(nil), // 2: proto.AbilityAppliedAbility
|
|
||||||
(*AbilityAppliedModifier)(nil), // 3: proto.AbilityAppliedModifier
|
|
||||||
(*AbilityMixinRecoverInfo)(nil), // 4: proto.AbilityMixinRecoverInfo
|
|
||||||
}
|
|
||||||
var file_AbilitySyncStateInfo_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AbilitySyncStateInfo.dynamic_value_map:type_name -> proto.AbilityScalarValueEntry
|
|
||||||
2, // 1: proto.AbilitySyncStateInfo.applied_abilities:type_name -> proto.AbilityAppliedAbility
|
|
||||||
3, // 2: proto.AbilitySyncStateInfo.applied_modifiers:type_name -> proto.AbilityAppliedModifier
|
|
||||||
4, // 3: proto.AbilitySyncStateInfo.mixin_recover_infos:type_name -> proto.AbilityMixinRecoverInfo
|
|
||||||
1, // 4: proto.AbilitySyncStateInfo.sgv_dynamic_value_map:type_name -> proto.AbilityScalarValueEntry
|
|
||||||
5, // [5:5] is the sub-list for method output_type
|
|
||||||
5, // [5:5] is the sub-list for method input_type
|
|
||||||
5, // [5:5] is the sub-list for extension type_name
|
|
||||||
5, // [5:5] is the sub-list for extension extendee
|
|
||||||
0, // [0:5] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AbilitySyncStateInfo_proto_init() }
|
|
||||||
func file_AbilitySyncStateInfo_proto_init() {
|
|
||||||
if File_AbilitySyncStateInfo_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_AbilityAppliedAbility_proto_init()
|
|
||||||
file_AbilityAppliedModifier_proto_init()
|
|
||||||
file_AbilityMixinRecoverInfo_proto_init()
|
|
||||||
file_AbilityScalarValueEntry_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AbilitySyncStateInfo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AbilitySyncStateInfo); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AbilitySyncStateInfo_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AbilitySyncStateInfo_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AbilitySyncStateInfo_proto_depIdxs,
|
|
||||||
MessageInfos: file_AbilitySyncStateInfo_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AbilitySyncStateInfo_proto = out.File
|
|
||||||
file_AbilitySyncStateInfo_proto_rawDesc = nil
|
|
||||||
file_AbilitySyncStateInfo_proto_goTypes = nil
|
|
||||||
file_AbilitySyncStateInfo_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AcceptCityReputationRequestReq.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2890
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
type AcceptCityReputationRequestReq struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
CityId uint32 `protobuf:"varint,14,opt,name=city_id,json=cityId,proto3" json:"city_id,omitempty"`
|
|
||||||
RequestId uint32 `protobuf:"varint,5,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestReq) Reset() {
|
|
||||||
*x = AcceptCityReputationRequestReq{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AcceptCityReputationRequestReq_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestReq) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AcceptCityReputationRequestReq) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestReq) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AcceptCityReputationRequestReq_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AcceptCityReputationRequestReq.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AcceptCityReputationRequestReq) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AcceptCityReputationRequestReq_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestReq) GetCityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.CityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestReq) GetRequestId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RequestId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AcceptCityReputationRequestReq_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AcceptCityReputationRequestReq_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x24, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x43, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x75,
|
|
||||||
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x58, 0x0a,
|
|
||||||
0x1e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x43, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x75, 0x74,
|
|
||||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
|
|
||||||
0x17, 0x0a, 0x07, 0x63, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x06, 0x63, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75,
|
|
||||||
0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x72, 0x65,
|
|
||||||
0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AcceptCityReputationRequestReq_proto_rawDescOnce sync.Once
|
|
||||||
file_AcceptCityReputationRequestReq_proto_rawDescData = file_AcceptCityReputationRequestReq_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AcceptCityReputationRequestReq_proto_rawDescGZIP() []byte {
|
|
||||||
file_AcceptCityReputationRequestReq_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AcceptCityReputationRequestReq_proto_rawDescData = protoimpl.X.CompressGZIP(file_AcceptCityReputationRequestReq_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AcceptCityReputationRequestReq_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AcceptCityReputationRequestReq_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AcceptCityReputationRequestReq_proto_goTypes = []interface{}{
|
|
||||||
(*AcceptCityReputationRequestReq)(nil), // 0: proto.AcceptCityReputationRequestReq
|
|
||||||
}
|
|
||||||
var file_AcceptCityReputationRequestReq_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AcceptCityReputationRequestReq_proto_init() }
|
|
||||||
func file_AcceptCityReputationRequestReq_proto_init() {
|
|
||||||
if File_AcceptCityReputationRequestReq_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AcceptCityReputationRequestReq_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AcceptCityReputationRequestReq); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AcceptCityReputationRequestReq_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AcceptCityReputationRequestReq_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AcceptCityReputationRequestReq_proto_depIdxs,
|
|
||||||
MessageInfos: file_AcceptCityReputationRequestReq_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AcceptCityReputationRequestReq_proto = out.File
|
|
||||||
file_AcceptCityReputationRequestReq_proto_rawDesc = nil
|
|
||||||
file_AcceptCityReputationRequestReq_proto_goTypes = nil
|
|
||||||
file_AcceptCityReputationRequestReq_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,183 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AcceptCityReputationRequestRsp.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2873
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type AcceptCityReputationRequestRsp struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
RequestId uint32 `protobuf:"varint,5,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
|
|
||||||
CityId uint32 `protobuf:"varint,13,opt,name=city_id,json=cityId,proto3" json:"city_id,omitempty"`
|
|
||||||
Retcode int32 `protobuf:"varint,2,opt,name=retcode,proto3" json:"retcode,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestRsp) Reset() {
|
|
||||||
*x = AcceptCityReputationRequestRsp{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AcceptCityReputationRequestRsp_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestRsp) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AcceptCityReputationRequestRsp) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestRsp) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AcceptCityReputationRequestRsp_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AcceptCityReputationRequestRsp.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AcceptCityReputationRequestRsp) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AcceptCityReputationRequestRsp_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestRsp) GetRequestId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RequestId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestRsp) GetCityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.CityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AcceptCityReputationRequestRsp) GetRetcode() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Retcode
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AcceptCityReputationRequestRsp_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AcceptCityReputationRequestRsp_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x24, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x43, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x75,
|
|
||||||
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x73, 0x70,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x72, 0x0a,
|
|
||||||
0x1e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x43, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x75, 0x74,
|
|
||||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x73, 0x70, 0x12,
|
|
||||||
0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x17,
|
|
||||||
0x0a, 0x07, 0x63, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x06, 0x63, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f,
|
|
||||||
0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64,
|
|
||||||
0x65, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_rawDescOnce sync.Once
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_rawDescData = file_AcceptCityReputationRequestRsp_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AcceptCityReputationRequestRsp_proto_rawDescGZIP() []byte {
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_rawDescData = protoimpl.X.CompressGZIP(file_AcceptCityReputationRequestRsp_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AcceptCityReputationRequestRsp_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AcceptCityReputationRequestRsp_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AcceptCityReputationRequestRsp_proto_goTypes = []interface{}{
|
|
||||||
(*AcceptCityReputationRequestRsp)(nil), // 0: proto.AcceptCityReputationRequestRsp
|
|
||||||
}
|
|
||||||
var file_AcceptCityReputationRequestRsp_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AcceptCityReputationRequestRsp_proto_init() }
|
|
||||||
func file_AcceptCityReputationRequestRsp_proto_init() {
|
|
||||||
if File_AcceptCityReputationRequestRsp_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AcceptCityReputationRequestRsp); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AcceptCityReputationRequestRsp_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AcceptCityReputationRequestRsp_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AcceptCityReputationRequestRsp_proto_depIdxs,
|
|
||||||
MessageInfos: file_AcceptCityReputationRequestRsp_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AcceptCityReputationRequestRsp_proto = out.File
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_rawDesc = nil
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_goTypes = nil
|
|
||||||
file_AcceptCityReputationRequestRsp_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,262 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: Achievement.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type Achievement_Status int32
|
|
||||||
|
|
||||||
const (
|
|
||||||
Achievement_STATUS_INVALID Achievement_Status = 0
|
|
||||||
Achievement_STATUS_UNFINISHED Achievement_Status = 1
|
|
||||||
Achievement_STATUS_FINISHED Achievement_Status = 2
|
|
||||||
Achievement_STATUS_REWARD_TAKEN Achievement_Status = 3
|
|
||||||
)
|
|
||||||
|
|
||||||
// Enum value maps for Achievement_Status.
|
|
||||||
var (
|
|
||||||
Achievement_Status_name = map[int32]string{
|
|
||||||
0: "STATUS_INVALID",
|
|
||||||
1: "STATUS_UNFINISHED",
|
|
||||||
2: "STATUS_FINISHED",
|
|
||||||
3: "STATUS_REWARD_TAKEN",
|
|
||||||
}
|
|
||||||
Achievement_Status_value = map[string]int32{
|
|
||||||
"STATUS_INVALID": 0,
|
|
||||||
"STATUS_UNFINISHED": 1,
|
|
||||||
"STATUS_FINISHED": 2,
|
|
||||||
"STATUS_REWARD_TAKEN": 3,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
func (x Achievement_Status) Enum() *Achievement_Status {
|
|
||||||
p := new(Achievement_Status)
|
|
||||||
*p = x
|
|
||||||
return p
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x Achievement_Status) String() string {
|
|
||||||
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (Achievement_Status) Descriptor() protoreflect.EnumDescriptor {
|
|
||||||
return file_Achievement_proto_enumTypes[0].Descriptor()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (Achievement_Status) Type() protoreflect.EnumType {
|
|
||||||
return &file_Achievement_proto_enumTypes[0]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x Achievement_Status) Number() protoreflect.EnumNumber {
|
|
||||||
return protoreflect.EnumNumber(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use Achievement_Status.Descriptor instead.
|
|
||||||
func (Achievement_Status) EnumDescriptor() ([]byte, []int) {
|
|
||||||
return file_Achievement_proto_rawDescGZIP(), []int{0, 0}
|
|
||||||
}
|
|
||||||
|
|
||||||
type Achievement struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
FinishTimestamp uint32 `protobuf:"varint,11,opt,name=finish_timestamp,json=finishTimestamp,proto3" json:"finish_timestamp,omitempty"`
|
|
||||||
Status Achievement_Status `protobuf:"varint,13,opt,name=status,proto3,enum=proto.Achievement_Status" json:"status,omitempty"`
|
|
||||||
CurProgress uint32 `protobuf:"varint,12,opt,name=cur_progress,json=curProgress,proto3" json:"cur_progress,omitempty"`
|
|
||||||
Id uint32 `protobuf:"varint,14,opt,name=id,proto3" json:"id,omitempty"`
|
|
||||||
TotalProgress uint32 `protobuf:"varint,8,opt,name=total_progress,json=totalProgress,proto3" json:"total_progress,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) Reset() {
|
|
||||||
*x = Achievement{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_Achievement_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*Achievement) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *Achievement) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_Achievement_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use Achievement.ProtoReflect.Descriptor instead.
|
|
||||||
func (*Achievement) Descriptor() ([]byte, []int) {
|
|
||||||
return file_Achievement_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) GetFinishTimestamp() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.FinishTimestamp
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) GetStatus() Achievement_Status {
|
|
||||||
if x != nil {
|
|
||||||
return x.Status
|
|
||||||
}
|
|
||||||
return Achievement_STATUS_INVALID
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) GetCurProgress() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.CurProgress
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) GetId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Id
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Achievement) GetTotalProgress() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.TotalProgress
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_Achievement_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_Achievement_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x11, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa8, 0x02, 0x0a, 0x0b, 0x41,
|
|
||||||
0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x69,
|
|
||||||
0x6e, 0x69, 0x73, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x0b,
|
|
||||||
0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65,
|
|
||||||
0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x31, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
|
|
||||||
0x0d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63,
|
|
||||||
0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
|
|
||||||
0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x75, 0x72, 0x5f,
|
|
||||||
0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b,
|
|
||||||
0x63, 0x75, 0x72, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69,
|
|
||||||
0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x74,
|
|
||||||
0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x18, 0x08, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65,
|
|
||||||
0x73, 0x73, 0x22, 0x61, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x0e,
|
|
||||||
0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00,
|
|
||||||
0x12, 0x15, 0x0a, 0x11, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x46, 0x49, 0x4e,
|
|
||||||
0x49, 0x53, 0x48, 0x45, 0x44, 0x10, 0x01, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x54, 0x41, 0x54, 0x55,
|
|
||||||
0x53, 0x5f, 0x46, 0x49, 0x4e, 0x49, 0x53, 0x48, 0x45, 0x44, 0x10, 0x02, 0x12, 0x17, 0x0a, 0x13,
|
|
||||||
0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x52, 0x45, 0x57, 0x41, 0x52, 0x44, 0x5f, 0x54, 0x41,
|
|
||||||
0x4b, 0x45, 0x4e, 0x10, 0x03, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_Achievement_proto_rawDescOnce sync.Once
|
|
||||||
file_Achievement_proto_rawDescData = file_Achievement_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_Achievement_proto_rawDescGZIP() []byte {
|
|
||||||
file_Achievement_proto_rawDescOnce.Do(func() {
|
|
||||||
file_Achievement_proto_rawDescData = protoimpl.X.CompressGZIP(file_Achievement_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_Achievement_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_Achievement_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
||||||
var file_Achievement_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_Achievement_proto_goTypes = []interface{}{
|
|
||||||
(Achievement_Status)(0), // 0: proto.Achievement.Status
|
|
||||||
(*Achievement)(nil), // 1: proto.Achievement
|
|
||||||
}
|
|
||||||
var file_Achievement_proto_depIdxs = []int32{
|
|
||||||
0, // 0: proto.Achievement.status:type_name -> proto.Achievement.Status
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_Achievement_proto_init() }
|
|
||||||
func file_Achievement_proto_init() {
|
|
||||||
if File_Achievement_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_Achievement_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*Achievement); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_Achievement_proto_rawDesc,
|
|
||||||
NumEnums: 1,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_Achievement_proto_goTypes,
|
|
||||||
DependencyIndexes: file_Achievement_proto_depIdxs,
|
|
||||||
EnumInfos: file_Achievement_proto_enumTypes,
|
|
||||||
MessageInfos: file_Achievement_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_Achievement_proto = out.File
|
|
||||||
file_Achievement_proto_rawDesc = nil
|
|
||||||
file_Achievement_proto_goTypes = nil
|
|
||||||
file_Achievement_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,181 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AchievementAllDataNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2676
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type AchievementAllDataNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AchievementList []*Achievement `protobuf:"bytes,4,rep,name=achievement_list,json=achievementList,proto3" json:"achievement_list,omitempty"`
|
|
||||||
RewardTakenGoalIdList []uint32 `protobuf:"varint,2,rep,packed,name=reward_taken_goal_id_list,json=rewardTakenGoalIdList,proto3" json:"reward_taken_goal_id_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementAllDataNotify) Reset() {
|
|
||||||
*x = AchievementAllDataNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AchievementAllDataNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementAllDataNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AchievementAllDataNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AchievementAllDataNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AchievementAllDataNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AchievementAllDataNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AchievementAllDataNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AchievementAllDataNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementAllDataNotify) GetAchievementList() []*Achievement {
|
|
||||||
if x != nil {
|
|
||||||
return x.AchievementList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementAllDataNotify) GetRewardTakenGoalIdList() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.RewardTakenGoalIdList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AchievementAllDataNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AchievementAllDataNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1e, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x6c, 0x6c,
|
|
||||||
0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65,
|
|
||||||
0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x93, 0x01, 0x0a, 0x18, 0x41,
|
|
||||||
0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74,
|
|
||||||
0x61, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x3d, 0x0a, 0x10, 0x61, 0x63, 0x68, 0x69, 0x65,
|
|
||||||
0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28,
|
|
||||||
0x0b, 0x32, 0x12, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76,
|
|
||||||
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0f, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65,
|
|
||||||
0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x19, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64,
|
|
||||||
0x5f, 0x74, 0x61, 0x6b, 0x65, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x5f, 0x6c,
|
|
||||||
0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x15, 0x72, 0x65, 0x77, 0x61, 0x72,
|
|
||||||
0x64, 0x54, 0x61, 0x6b, 0x65, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AchievementAllDataNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_AchievementAllDataNotify_proto_rawDescData = file_AchievementAllDataNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AchievementAllDataNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_AchievementAllDataNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AchievementAllDataNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_AchievementAllDataNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AchievementAllDataNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AchievementAllDataNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AchievementAllDataNotify_proto_goTypes = []interface{}{
|
|
||||||
(*AchievementAllDataNotify)(nil), // 0: proto.AchievementAllDataNotify
|
|
||||||
(*Achievement)(nil), // 1: proto.Achievement
|
|
||||||
}
|
|
||||||
var file_AchievementAllDataNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AchievementAllDataNotify.achievement_list:type_name -> proto.Achievement
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AchievementAllDataNotify_proto_init() }
|
|
||||||
func file_AchievementAllDataNotify_proto_init() {
|
|
||||||
if File_AchievementAllDataNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Achievement_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AchievementAllDataNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AchievementAllDataNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AchievementAllDataNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AchievementAllDataNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AchievementAllDataNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_AchievementAllDataNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AchievementAllDataNotify_proto = out.File
|
|
||||||
file_AchievementAllDataNotify_proto_rawDesc = nil
|
|
||||||
file_AchievementAllDataNotify_proto_goTypes = nil
|
|
||||||
file_AchievementAllDataNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,169 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: AchievementUpdateNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2668
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type AchievementUpdateNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AchievementList []*Achievement `protobuf:"bytes,14,rep,name=achievement_list,json=achievementList,proto3" json:"achievement_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementUpdateNotify) Reset() {
|
|
||||||
*x = AchievementUpdateNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_AchievementUpdateNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementUpdateNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*AchievementUpdateNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *AchievementUpdateNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_AchievementUpdateNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use AchievementUpdateNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*AchievementUpdateNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_AchievementUpdateNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *AchievementUpdateNotify) GetAchievementList() []*Achievement {
|
|
||||||
if x != nil {
|
|
||||||
return x.AchievementList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_AchievementUpdateNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_AchievementUpdateNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1d, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x64,
|
|
||||||
0x61, 0x74, 0x65, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
|
||||||
0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d,
|
|
||||||
0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x58, 0x0a, 0x17, 0x41, 0x63, 0x68,
|
|
||||||
0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f,
|
|
||||||
0x74, 0x69, 0x66, 0x79, 0x12, 0x3d, 0x0a, 0x10, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d,
|
|
||||||
0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12,
|
|
||||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65,
|
|
||||||
0x6e, 0x74, 0x52, 0x0f, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x4c,
|
|
||||||
0x69, 0x73, 0x74, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
||||||
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_AchievementUpdateNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_AchievementUpdateNotify_proto_rawDescData = file_AchievementUpdateNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_AchievementUpdateNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_AchievementUpdateNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_AchievementUpdateNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_AchievementUpdateNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_AchievementUpdateNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_AchievementUpdateNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_AchievementUpdateNotify_proto_goTypes = []interface{}{
|
|
||||||
(*AchievementUpdateNotify)(nil), // 0: proto.AchievementUpdateNotify
|
|
||||||
(*Achievement)(nil), // 1: proto.Achievement
|
|
||||||
}
|
|
||||||
var file_AchievementUpdateNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.AchievementUpdateNotify.achievement_list:type_name -> proto.Achievement
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_AchievementUpdateNotify_proto_init() }
|
|
||||||
func file_AchievementUpdateNotify_proto_init() {
|
|
||||||
if File_AchievementUpdateNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Achievement_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_AchievementUpdateNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*AchievementUpdateNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_AchievementUpdateNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_AchievementUpdateNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_AchievementUpdateNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_AchievementUpdateNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_AchievementUpdateNotify_proto = out.File
|
|
||||||
file_AchievementUpdateNotify_proto_rawDesc = nil
|
|
||||||
file_AchievementUpdateNotify_proto_goTypes = nil
|
|
||||||
file_AchievementUpdateNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,164 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityAcceptAllGiveGiftReq.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 8113
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
type ActivityAcceptAllGiveGiftReq struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ScheduleId uint32 `protobuf:"varint,3,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftReq) Reset() {
|
|
||||||
*x = ActivityAcceptAllGiveGiftReq{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityAcceptAllGiveGiftReq_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftReq) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityAcceptAllGiveGiftReq) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftReq) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityAcceptAllGiveGiftReq_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityAcceptAllGiveGiftReq.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityAcceptAllGiveGiftReq) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityAcceptAllGiveGiftReq_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftReq) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityAcceptAllGiveGiftReq_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityAcceptAllGiveGiftReq_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x22, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
||||||
0x41, 0x6c, 0x6c, 0x47, 0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x3f, 0x0a, 0x1c, 0x41,
|
|
||||||
0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x41, 0x6c, 0x6c,
|
|
||||||
0x47, 0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x73,
|
|
||||||
0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_rawDescData = file_ActivityAcceptAllGiveGiftReq_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityAcceptAllGiveGiftReq_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityAcceptAllGiveGiftReq_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityAcceptAllGiveGiftReq_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityAcceptAllGiveGiftReq_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityAcceptAllGiveGiftReq_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityAcceptAllGiveGiftReq)(nil), // 0: proto.ActivityAcceptAllGiveGiftReq
|
|
||||||
}
|
|
||||||
var file_ActivityAcceptAllGiveGiftReq_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityAcceptAllGiveGiftReq_proto_init() }
|
|
||||||
func file_ActivityAcceptAllGiveGiftReq_proto_init() {
|
|
||||||
if File_ActivityAcceptAllGiveGiftReq_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityAcceptAllGiveGiftReq); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityAcceptAllGiveGiftReq_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityAcceptAllGiveGiftReq_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityAcceptAllGiveGiftReq_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityAcceptAllGiveGiftReq_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityAcceptAllGiveGiftReq_proto = out.File
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_rawDesc = nil
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_goTypes = nil
|
|
||||||
file_ActivityAcceptAllGiveGiftReq_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,193 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityAcceptAllGiveGiftRsp.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 8132
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityAcceptAllGiveGiftRsp struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AcceptGiftResultInfoList []*ActivityAcceptGiftResultInfo `protobuf:"bytes,5,rep,name=accept_gift_result_info_list,json=acceptGiftResultInfoList,proto3" json:"accept_gift_result_info_list,omitempty"`
|
|
||||||
ScheduleId uint32 `protobuf:"varint,10,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
Retcode int32 `protobuf:"varint,9,opt,name=retcode,proto3" json:"retcode,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftRsp) Reset() {
|
|
||||||
*x = ActivityAcceptAllGiveGiftRsp{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityAcceptAllGiveGiftRsp_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftRsp) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityAcceptAllGiveGiftRsp) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftRsp) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityAcceptAllGiveGiftRsp_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityAcceptAllGiveGiftRsp.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityAcceptAllGiveGiftRsp) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityAcceptAllGiveGiftRsp_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftRsp) GetAcceptGiftResultInfoList() []*ActivityAcceptGiftResultInfo {
|
|
||||||
if x != nil {
|
|
||||||
return x.AcceptGiftResultInfoList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftRsp) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptAllGiveGiftRsp) GetRetcode() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Retcode
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityAcceptAllGiveGiftRsp_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityAcceptAllGiveGiftRsp_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x22, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
||||||
0x41, 0x6c, 0x6c, 0x47, 0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x73, 0x70, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x41, 0x63, 0x74,
|
|
||||||
0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52,
|
|
||||||
0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
|
|
||||||
0xbe, 0x01, 0x0a, 0x1c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65,
|
|
||||||
0x70, 0x74, 0x41, 0x6c, 0x6c, 0x47, 0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x73, 0x70,
|
|
||||||
0x12, 0x63, 0x0a, 0x1c, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x69, 0x66, 0x74, 0x5f,
|
|
||||||
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x6c, 0x69, 0x73, 0x74,
|
|
||||||
0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41,
|
|
||||||
0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66,
|
|
||||||
0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x18, 0x61, 0x63, 0x63,
|
|
||||||
0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66,
|
|
||||||
0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c,
|
|
||||||
0x65, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65,
|
|
||||||
0x64, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64,
|
|
||||||
0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64, 0x65,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_rawDescData = file_ActivityAcceptAllGiveGiftRsp_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityAcceptAllGiveGiftRsp_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityAcceptAllGiveGiftRsp_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityAcceptAllGiveGiftRsp_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityAcceptAllGiveGiftRsp_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityAcceptAllGiveGiftRsp_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityAcceptAllGiveGiftRsp)(nil), // 0: proto.ActivityAcceptAllGiveGiftRsp
|
|
||||||
(*ActivityAcceptGiftResultInfo)(nil), // 1: proto.ActivityAcceptGiftResultInfo
|
|
||||||
}
|
|
||||||
var file_ActivityAcceptAllGiveGiftRsp_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.ActivityAcceptAllGiveGiftRsp.accept_gift_result_info_list:type_name -> proto.ActivityAcceptGiftResultInfo
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityAcceptAllGiveGiftRsp_proto_init() }
|
|
||||||
func file_ActivityAcceptAllGiveGiftRsp_proto_init() {
|
|
||||||
if File_ActivityAcceptAllGiveGiftRsp_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityAcceptAllGiveGiftRsp); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityAcceptAllGiveGiftRsp_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityAcceptAllGiveGiftRsp_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityAcceptAllGiveGiftRsp_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityAcceptAllGiveGiftRsp_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityAcceptAllGiveGiftRsp_proto = out.File
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_rawDesc = nil
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_goTypes = nil
|
|
||||||
file_ActivityAcceptAllGiveGiftRsp_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,202 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityAcceptGiftResultInfo.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type ActivityAcceptGiftResultInfo struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
UnacceptGiftNumMap map[uint32]uint32 `protobuf:"bytes,3,rep,name=unaccept_gift_num_map,json=unacceptGiftNumMap,proto3" json:"unaccept_gift_num_map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
|
|
||||||
Uid uint32 `protobuf:"varint,6,opt,name=uid,proto3" json:"uid,omitempty"`
|
|
||||||
AcceptGiftNumMap map[uint32]uint32 `protobuf:"bytes,13,rep,name=accept_gift_num_map,json=acceptGiftNumMap,proto3" json:"accept_gift_num_map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiftResultInfo) Reset() {
|
|
||||||
*x = ActivityAcceptGiftResultInfo{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityAcceptGiftResultInfo_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiftResultInfo) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityAcceptGiftResultInfo) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiftResultInfo) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityAcceptGiftResultInfo_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityAcceptGiftResultInfo.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityAcceptGiftResultInfo) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityAcceptGiftResultInfo_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiftResultInfo) GetUnacceptGiftNumMap() map[uint32]uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.UnacceptGiftNumMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiftResultInfo) GetUid() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Uid
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiftResultInfo) GetAcceptGiftNumMap() map[uint32]uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AcceptGiftNumMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityAcceptGiftResultInfo_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityAcceptGiftResultInfo_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x22, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
||||||
0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x96, 0x03, 0x0a, 0x1c,
|
|
||||||
0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69,
|
|
||||||
0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x6e, 0x0a, 0x15,
|
|
||||||
0x75, 0x6e, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x69, 0x66, 0x74, 0x5f, 0x6e, 0x75,
|
|
||||||
0x6d, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65,
|
|
||||||
0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
|
||||||
0x2e, 0x55, 0x6e, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d,
|
|
||||||
0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x12, 0x75, 0x6e, 0x61, 0x63, 0x63, 0x65,
|
|
||||||
0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61, 0x70, 0x12, 0x10, 0x0a, 0x03,
|
|
||||||
0x75, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x68,
|
|
||||||
0x0a, 0x13, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x69, 0x66, 0x74, 0x5f, 0x6e, 0x75,
|
|
||||||
0x6d, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65,
|
|
||||||
0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
|
||||||
0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61,
|
|
||||||
0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69,
|
|
||||||
0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61, 0x70, 0x1a, 0x45, 0x0a, 0x17, 0x55, 0x6e, 0x61, 0x63,
|
|
||||||
0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61, 0x70, 0x45, 0x6e,
|
|
||||||
0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
|
|
||||||
0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
|
|
||||||
0x43, 0x0a, 0x15, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d,
|
|
||||||
0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
|
|
||||||
0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
|
|
||||||
0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
|
||||||
0x3a, 0x02, 0x38, 0x01, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_rawDescData = file_ActivityAcceptGiftResultInfo_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityAcceptGiftResultInfo_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityAcceptGiftResultInfo_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityAcceptGiftResultInfo_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityAcceptGiftResultInfo_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
|
||||||
var file_ActivityAcceptGiftResultInfo_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityAcceptGiftResultInfo)(nil), // 0: proto.ActivityAcceptGiftResultInfo
|
|
||||||
nil, // 1: proto.ActivityAcceptGiftResultInfo.UnacceptGiftNumMapEntry
|
|
||||||
nil, // 2: proto.ActivityAcceptGiftResultInfo.AcceptGiftNumMapEntry
|
|
||||||
}
|
|
||||||
var file_ActivityAcceptGiftResultInfo_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.ActivityAcceptGiftResultInfo.unaccept_gift_num_map:type_name -> proto.ActivityAcceptGiftResultInfo.UnacceptGiftNumMapEntry
|
|
||||||
2, // 1: proto.ActivityAcceptGiftResultInfo.accept_gift_num_map:type_name -> proto.ActivityAcceptGiftResultInfo.AcceptGiftNumMapEntry
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityAcceptGiftResultInfo_proto_init() }
|
|
||||||
func file_ActivityAcceptGiftResultInfo_proto_init() {
|
|
||||||
if File_ActivityAcceptGiftResultInfo_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityAcceptGiftResultInfo); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityAcceptGiftResultInfo_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 3,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityAcceptGiftResultInfo_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityAcceptGiftResultInfo_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityAcceptGiftResultInfo_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityAcceptGiftResultInfo_proto = out.File
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_rawDesc = nil
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_goTypes = nil
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,173 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityAcceptGiveGiftReq.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 8095
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
type ActivityAcceptGiveGiftReq struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ScheduleId uint32 `protobuf:"varint,3,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
Uid uint32 `protobuf:"varint,12,opt,name=uid,proto3" json:"uid,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftReq) Reset() {
|
|
||||||
*x = ActivityAcceptGiveGiftReq{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityAcceptGiveGiftReq_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftReq) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityAcceptGiveGiftReq) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftReq) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityAcceptGiveGiftReq_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityAcceptGiveGiftReq.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityAcceptGiveGiftReq) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityAcceptGiveGiftReq_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftReq) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftReq) GetUid() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Uid
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityAcceptGiveGiftReq_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityAcceptGiveGiftReq_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
||||||
0x47, 0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4e, 0x0a, 0x19, 0x41, 0x63, 0x74, 0x69,
|
|
||||||
0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x76, 0x65, 0x47, 0x69,
|
|
||||||
0x66, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c,
|
|
||||||
0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65,
|
|
||||||
0x64, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x0c, 0x20,
|
|
||||||
0x01, 0x28, 0x0d, 0x52, 0x03, 0x75, 0x69, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_rawDescData = file_ActivityAcceptGiveGiftReq_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityAcceptGiveGiftReq_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityAcceptGiveGiftReq_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityAcceptGiveGiftReq_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityAcceptGiveGiftReq_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityAcceptGiveGiftReq_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityAcceptGiveGiftReq)(nil), // 0: proto.ActivityAcceptGiveGiftReq
|
|
||||||
}
|
|
||||||
var file_ActivityAcceptGiveGiftReq_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityAcceptGiveGiftReq_proto_init() }
|
|
||||||
func file_ActivityAcceptGiveGiftReq_proto_init() {
|
|
||||||
if File_ActivityAcceptGiveGiftReq_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityAcceptGiveGiftReq); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityAcceptGiveGiftReq_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityAcceptGiveGiftReq_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityAcceptGiveGiftReq_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityAcceptGiveGiftReq_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityAcceptGiveGiftReq_proto = out.File
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_rawDesc = nil
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_goTypes = nil
|
|
||||||
file_ActivityAcceptGiveGiftReq_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,192 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityAcceptGiveGiftRsp.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 8502
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityAcceptGiveGiftRsp struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AcceptGiftResultInfo *ActivityAcceptGiftResultInfo `protobuf:"bytes,4,opt,name=accept_gift_result_info,json=acceptGiftResultInfo,proto3" json:"accept_gift_result_info,omitempty"`
|
|
||||||
Retcode int32 `protobuf:"varint,11,opt,name=retcode,proto3" json:"retcode,omitempty"`
|
|
||||||
ScheduleId uint32 `protobuf:"varint,10,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftRsp) Reset() {
|
|
||||||
*x = ActivityAcceptGiveGiftRsp{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityAcceptGiveGiftRsp_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftRsp) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityAcceptGiveGiftRsp) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftRsp) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityAcceptGiveGiftRsp_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityAcceptGiveGiftRsp.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityAcceptGiveGiftRsp) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityAcceptGiveGiftRsp_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftRsp) GetAcceptGiftResultInfo() *ActivityAcceptGiftResultInfo {
|
|
||||||
if x != nil {
|
|
||||||
return x.AcceptGiftResultInfo
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftRsp) GetRetcode() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Retcode
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityAcceptGiveGiftRsp) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityAcceptGiveGiftRsp_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityAcceptGiveGiftRsp_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1f, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74,
|
|
||||||
0x47, 0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x73, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69,
|
|
||||||
0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75,
|
|
||||||
0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb2, 0x01, 0x0a,
|
|
||||||
0x19, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47,
|
|
||||||
0x69, 0x76, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x73, 0x70, 0x12, 0x5a, 0x0a, 0x17, 0x61, 0x63,
|
|
||||||
0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x69, 0x66, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
|
|
||||||
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x65,
|
|
||||||
0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
|
||||||
0x52, 0x14, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x75,
|
|
||||||
0x6c, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64,
|
|
||||||
0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64, 0x65,
|
|
||||||
0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
||||||
0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49,
|
|
||||||
0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_rawDescData = file_ActivityAcceptGiveGiftRsp_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityAcceptGiveGiftRsp_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityAcceptGiveGiftRsp_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityAcceptGiveGiftRsp_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityAcceptGiveGiftRsp_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityAcceptGiveGiftRsp_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityAcceptGiveGiftRsp)(nil), // 0: proto.ActivityAcceptGiveGiftRsp
|
|
||||||
(*ActivityAcceptGiftResultInfo)(nil), // 1: proto.ActivityAcceptGiftResultInfo
|
|
||||||
}
|
|
||||||
var file_ActivityAcceptGiveGiftRsp_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.ActivityAcceptGiveGiftRsp.accept_gift_result_info:type_name -> proto.ActivityAcceptGiftResultInfo
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityAcceptGiveGiftRsp_proto_init() }
|
|
||||||
func file_ActivityAcceptGiveGiftRsp_proto_init() {
|
|
||||||
if File_ActivityAcceptGiveGiftRsp_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_ActivityAcceptGiftResultInfo_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityAcceptGiveGiftRsp); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityAcceptGiveGiftRsp_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityAcceptGiveGiftRsp_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityAcceptGiveGiftRsp_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityAcceptGiveGiftRsp_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityAcceptGiveGiftRsp_proto = out.File
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_rawDesc = nil
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_goTypes = nil
|
|
||||||
file_ActivityAcceptGiveGiftRsp_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityBannerClearReq.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2009
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
type ActivityBannerClearReq struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ScheduleId uint32 `protobuf:"varint,15,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
ActivityId uint32 `protobuf:"varint,12,opt,name=activity_id,json=activityId,proto3" json:"activity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearReq) Reset() {
|
|
||||||
*x = ActivityBannerClearReq{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityBannerClearReq_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearReq) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityBannerClearReq) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearReq) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityBannerClearReq_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityBannerClearReq.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityBannerClearReq) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityBannerClearReq_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearReq) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearReq) GetActivityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityBannerClearReq_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityBannerClearReq_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72,
|
|
||||||
0x43, 0x6c, 0x65, 0x61, 0x72, 0x52, 0x65, 0x71, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5a, 0x0a, 0x16, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
|
|
||||||
0x79, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x52, 0x65, 0x71, 0x12,
|
|
||||||
0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0f,
|
|
||||||
0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x64,
|
|
||||||
0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18,
|
|
||||||
0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49,
|
|
||||||
0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityBannerClearReq_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityBannerClearReq_proto_rawDescData = file_ActivityBannerClearReq_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityBannerClearReq_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityBannerClearReq_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityBannerClearReq_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityBannerClearReq_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityBannerClearReq_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityBannerClearReq_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityBannerClearReq_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityBannerClearReq)(nil), // 0: proto.ActivityBannerClearReq
|
|
||||||
}
|
|
||||||
var file_ActivityBannerClearReq_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityBannerClearReq_proto_init() }
|
|
||||||
func file_ActivityBannerClearReq_proto_init() {
|
|
||||||
if File_ActivityBannerClearReq_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityBannerClearReq_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityBannerClearReq); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityBannerClearReq_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityBannerClearReq_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityBannerClearReq_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityBannerClearReq_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityBannerClearReq_proto = out.File
|
|
||||||
file_ActivityBannerClearReq_proto_rawDesc = nil
|
|
||||||
file_ActivityBannerClearReq_proto_goTypes = nil
|
|
||||||
file_ActivityBannerClearReq_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,182 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityBannerClearRsp.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2163
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityBannerClearRsp struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ActivityId uint32 `protobuf:"varint,4,opt,name=activity_id,json=activityId,proto3" json:"activity_id,omitempty"`
|
|
||||||
Retcode int32 `protobuf:"varint,6,opt,name=retcode,proto3" json:"retcode,omitempty"`
|
|
||||||
ScheduleId uint32 `protobuf:"varint,11,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearRsp) Reset() {
|
|
||||||
*x = ActivityBannerClearRsp{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityBannerClearRsp_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearRsp) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityBannerClearRsp) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearRsp) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityBannerClearRsp_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityBannerClearRsp.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityBannerClearRsp) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityBannerClearRsp_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearRsp) GetActivityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearRsp) GetRetcode() int32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Retcode
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerClearRsp) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityBannerClearRsp_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityBannerClearRsp_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72,
|
|
||||||
0x43, 0x6c, 0x65, 0x61, 0x72, 0x52, 0x73, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x74, 0x0a, 0x16, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
|
|
||||||
0x79, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x52, 0x73, 0x70, 0x12,
|
|
||||||
0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x04,
|
|
||||||
0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64,
|
|
||||||
0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
||||||
0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63,
|
|
||||||
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
||||||
0x0a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e,
|
|
||||||
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityBannerClearRsp_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityBannerClearRsp_proto_rawDescData = file_ActivityBannerClearRsp_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityBannerClearRsp_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityBannerClearRsp_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityBannerClearRsp_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityBannerClearRsp_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityBannerClearRsp_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityBannerClearRsp_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityBannerClearRsp_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityBannerClearRsp)(nil), // 0: proto.ActivityBannerClearRsp
|
|
||||||
}
|
|
||||||
var file_ActivityBannerClearRsp_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityBannerClearRsp_proto_init() }
|
|
||||||
func file_ActivityBannerClearRsp_proto_init() {
|
|
||||||
if File_ActivityBannerClearRsp_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityBannerClearRsp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityBannerClearRsp); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityBannerClearRsp_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityBannerClearRsp_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityBannerClearRsp_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityBannerClearRsp_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityBannerClearRsp_proto = out.File
|
|
||||||
file_ActivityBannerClearRsp_proto_rawDesc = nil
|
|
||||||
file_ActivityBannerClearRsp_proto_goTypes = nil
|
|
||||||
file_ActivityBannerClearRsp_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,173 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityBannerNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2155
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityBannerNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ScheduleId uint32 `protobuf:"varint,1,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
ActivityId uint32 `protobuf:"varint,3,opt,name=activity_id,json=activityId,proto3" json:"activity_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerNotify) Reset() {
|
|
||||||
*x = ActivityBannerNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityBannerNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityBannerNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityBannerNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityBannerNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityBannerNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityBannerNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityBannerNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerNotify) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityBannerNotify) GetActivityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityBannerNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityBannerNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1a, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72,
|
|
||||||
0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x22, 0x58, 0x0a, 0x14, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x42,
|
|
||||||
0x61, 0x6e, 0x6e, 0x65, 0x72, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x73,
|
|
||||||
0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b,
|
|
||||||
0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x42, 0x0a, 0x5a,
|
|
||||||
0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityBannerNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityBannerNotify_proto_rawDescData = file_ActivityBannerNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityBannerNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityBannerNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityBannerNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityBannerNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityBannerNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityBannerNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityBannerNotify_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityBannerNotify)(nil), // 0: proto.ActivityBannerNotify
|
|
||||||
}
|
|
||||||
var file_ActivityBannerNotify_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityBannerNotify_proto_init() }
|
|
||||||
func file_ActivityBannerNotify_proto_init() {
|
|
||||||
if File_ActivityBannerNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityBannerNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityBannerNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityBannerNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityBannerNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityBannerNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityBannerNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityBannerNotify_proto = out.File
|
|
||||||
file_ActivityBannerNotify_proto_rawDesc = nil
|
|
||||||
file_ActivityBannerNotify_proto_goTypes = nil
|
|
||||||
file_ActivityBannerNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,193 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityCoinInfoNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2008
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityCoinInfoNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ScheduleId uint32 `protobuf:"varint,8,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
ActivityId uint32 `protobuf:"varint,10,opt,name=activity_id,json=activityId,proto3" json:"activity_id,omitempty"`
|
|
||||||
ActivityCoinMap map[uint32]uint32 `protobuf:"bytes,2,rep,name=activity_coin_map,json=activityCoinMap,proto3" json:"activity_coin_map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCoinInfoNotify) Reset() {
|
|
||||||
*x = ActivityCoinInfoNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityCoinInfoNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCoinInfoNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityCoinInfoNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityCoinInfoNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityCoinInfoNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityCoinInfoNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityCoinInfoNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityCoinInfoNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCoinInfoNotify) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCoinInfoNotify) GetActivityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCoinInfoNotify) GetActivityCoinMap() map[uint32]uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivityCoinMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityCoinInfoNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityCoinInfoNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1c, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x69, 0x6e, 0x49, 0x6e,
|
|
||||||
0x66, 0x6f, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xfe, 0x01, 0x0a, 0x16, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69,
|
|
||||||
0x74, 0x79, 0x43, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79,
|
|
||||||
0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
||||||
0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49,
|
|
||||||
0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64,
|
|
||||||
0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
|
|
||||||
0x49, 0x64, 0x12, 0x5e, 0x0a, 0x11, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x63,
|
|
||||||
0x6f, 0x69, 0x6e, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f,
|
|
||||||
0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e, 0x41, 0x63, 0x74,
|
|
||||||
0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x69, 0x6e, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72,
|
|
||||||
0x79, 0x52, 0x0f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x69, 0x6e, 0x4d,
|
|
||||||
0x61, 0x70, 0x1a, 0x42, 0x0a, 0x14, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f,
|
|
||||||
0x69, 0x6e, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
|
|
||||||
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
|
|
||||||
0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
||||||
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityCoinInfoNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityCoinInfoNotify_proto_rawDescData = file_ActivityCoinInfoNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityCoinInfoNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityCoinInfoNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityCoinInfoNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityCoinInfoNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityCoinInfoNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityCoinInfoNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
||||||
var file_ActivityCoinInfoNotify_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityCoinInfoNotify)(nil), // 0: proto.ActivityCoinInfoNotify
|
|
||||||
nil, // 1: proto.ActivityCoinInfoNotify.ActivityCoinMapEntry
|
|
||||||
}
|
|
||||||
var file_ActivityCoinInfoNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.ActivityCoinInfoNotify.activity_coin_map:type_name -> proto.ActivityCoinInfoNotify.ActivityCoinMapEntry
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityCoinInfoNotify_proto_init() }
|
|
||||||
func file_ActivityCoinInfoNotify_proto_init() {
|
|
||||||
if File_ActivityCoinInfoNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityCoinInfoNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityCoinInfoNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityCoinInfoNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 2,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityCoinInfoNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityCoinInfoNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityCoinInfoNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityCoinInfoNotify_proto = out.File
|
|
||||||
file_ActivityCoinInfoNotify_proto_rawDesc = nil
|
|
||||||
file_ActivityCoinInfoNotify_proto_goTypes = nil
|
|
||||||
file_ActivityCoinInfoNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,225 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityCondStateChangeNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 2140
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityCondStateChangeNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
ActivatedSaleIdList []uint32 `protobuf:"varint,9,rep,packed,name=activated_sale_id_list,json=activatedSaleIdList,proto3" json:"activated_sale_id_list,omitempty"`
|
|
||||||
ActivityId uint32 `protobuf:"varint,4,opt,name=activity_id,json=activityId,proto3" json:"activity_id,omitempty"`
|
|
||||||
ScheduleId uint32 `protobuf:"varint,5,opt,name=schedule_id,json=scheduleId,proto3" json:"schedule_id,omitempty"`
|
|
||||||
ExpireCondList []uint32 `protobuf:"varint,11,rep,packed,name=expire_cond_list,json=expireCondList,proto3" json:"expire_cond_list,omitempty"`
|
|
||||||
DisableTransferPointInteractionList []*Uint32Pair `protobuf:"bytes,12,rep,name=disable_transfer_point_interaction_list,json=disableTransferPointInteractionList,proto3" json:"disable_transfer_point_interaction_list,omitempty"`
|
|
||||||
MeetCondList []uint32 `protobuf:"varint,1,rep,packed,name=meet_cond_list,json=meetCondList,proto3" json:"meet_cond_list,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) Reset() {
|
|
||||||
*x = ActivityCondStateChangeNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityCondStateChangeNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityCondStateChangeNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityCondStateChangeNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityCondStateChangeNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityCondStateChangeNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityCondStateChangeNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) GetActivatedSaleIdList() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivatedSaleIdList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) GetActivityId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ActivityId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) GetScheduleId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScheduleId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) GetExpireCondList() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.ExpireCondList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) GetDisableTransferPointInteractionList() []*Uint32Pair {
|
|
||||||
if x != nil {
|
|
||||||
return x.DisableTransferPointInteractionList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityCondStateChangeNotify) GetMeetCondList() []uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.MeetCondList
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityCondStateChangeNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityCondStateChangeNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x23, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x6e, 0x64, 0x53, 0x74,
|
|
||||||
0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x10, 0x55, 0x69,
|
|
||||||
0x6e, 0x74, 0x33, 0x32, 0x50, 0x61, 0x69, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xcf,
|
|
||||||
0x02, 0x0a, 0x1d, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x6e, 0x64, 0x53,
|
|
||||||
0x74, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79,
|
|
||||||
0x12, 0x33, 0x0a, 0x16, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x61,
|
|
||||||
0x6c, 0x65, 0x5f, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0d,
|
|
||||||
0x52, 0x13, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x64, 0x53, 0x61, 0x6c, 0x65, 0x49,
|
|
||||||
0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
|
|
||||||
0x79, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69,
|
|
||||||
0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75,
|
|
||||||
0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x63, 0x68,
|
|
||||||
0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x65, 0x78, 0x70, 0x69, 0x72,
|
|
||||||
0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x03, 0x28,
|
|
||||||
0x0d, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x43, 0x6f, 0x6e, 0x64, 0x4c, 0x69, 0x73,
|
|
||||||
0x74, 0x12, 0x67, 0x0a, 0x27, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x72, 0x61,
|
|
||||||
0x6e, 0x73, 0x66, 0x65, 0x72, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65,
|
|
||||||
0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x03,
|
|
||||||
0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x55, 0x69, 0x6e, 0x74, 0x33,
|
|
||||||
0x32, 0x50, 0x61, 0x69, 0x72, 0x52, 0x23, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x72,
|
|
||||||
0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72,
|
|
||||||
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x65,
|
|
||||||
0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
|
|
||||||
0x28, 0x0d, 0x52, 0x0c, 0x6d, 0x65, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x4c, 0x69, 0x73, 0x74,
|
|
||||||
0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72,
|
|
||||||
0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityCondStateChangeNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityCondStateChangeNotify_proto_rawDescData = file_ActivityCondStateChangeNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityCondStateChangeNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityCondStateChangeNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityCondStateChangeNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityCondStateChangeNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityCondStateChangeNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityCondStateChangeNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityCondStateChangeNotify_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityCondStateChangeNotify)(nil), // 0: proto.ActivityCondStateChangeNotify
|
|
||||||
(*Uint32Pair)(nil), // 1: proto.Uint32Pair
|
|
||||||
}
|
|
||||||
var file_ActivityCondStateChangeNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.ActivityCondStateChangeNotify.disable_transfer_point_interaction_list:type_name -> proto.Uint32Pair
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityCondStateChangeNotify_proto_init() }
|
|
||||||
func file_ActivityCondStateChangeNotify_proto_init() {
|
|
||||||
if File_ActivityCondStateChangeNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Uint32Pair_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityCondStateChangeNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityCondStateChangeNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityCondStateChangeNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityCondStateChangeNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityCondStateChangeNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityCondStateChangeNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityCondStateChangeNotify_proto = out.File
|
|
||||||
file_ActivityCondStateChangeNotify_proto_rawDesc = nil
|
|
||||||
file_ActivityCondStateChangeNotify_proto_goTypes = nil
|
|
||||||
file_ActivityCondStateChangeNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,181 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityDisableTransferPointInteractionNotify.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
// CmdId: 8982
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
type ActivityDisableTransferPointInteractionNotify struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
IsDisable bool `protobuf:"varint,10,opt,name=is_disable,json=isDisable,proto3" json:"is_disable,omitempty"`
|
|
||||||
ScenePointPair *Uint32Pair `protobuf:"bytes,5,opt,name=scene_point_pair,json=scenePointPair,proto3" json:"scene_point_pair,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDisableTransferPointInteractionNotify) Reset() {
|
|
||||||
*x = ActivityDisableTransferPointInteractionNotify{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityDisableTransferPointInteractionNotify_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDisableTransferPointInteractionNotify) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityDisableTransferPointInteractionNotify) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityDisableTransferPointInteractionNotify) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityDisableTransferPointInteractionNotify_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityDisableTransferPointInteractionNotify.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityDisableTransferPointInteractionNotify) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityDisableTransferPointInteractionNotify_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDisableTransferPointInteractionNotify) GetIsDisable() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsDisable
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDisableTransferPointInteractionNotify) GetScenePointPair() *Uint32Pair {
|
|
||||||
if x != nil {
|
|
||||||
return x.ScenePointPair
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityDisableTransferPointInteractionNotify_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityDisableTransferPointInteractionNotify_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x33, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
|
|
||||||
0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x49, 0x6e,
|
|
||||||
0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2e,
|
|
||||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x10, 0x55, 0x69,
|
|
||||||
0x6e, 0x74, 0x33, 0x32, 0x50, 0x61, 0x69, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8b,
|
|
||||||
0x01, 0x0a, 0x2d, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x44, 0x69, 0x73, 0x61, 0x62,
|
|
||||||
0x6c, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x49,
|
|
||||||
0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79,
|
|
||||||
0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x0a,
|
|
||||||
0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12,
|
|
||||||
0x3b, 0x0a, 0x10, 0x73, 0x63, 0x65, 0x6e, 0x65, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x5f, 0x70,
|
|
||||||
0x61, 0x69, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x2e, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x50, 0x61, 0x69, 0x72, 0x52, 0x0e, 0x73, 0x63,
|
|
||||||
0x65, 0x6e, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x50, 0x61, 0x69, 0x72, 0x42, 0x0a, 0x5a, 0x08,
|
|
||||||
0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_rawDescData = file_ActivityDisableTransferPointInteractionNotify_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityDisableTransferPointInteractionNotify_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityDisableTransferPointInteractionNotify_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityDisableTransferPointInteractionNotify_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityDisableTransferPointInteractionNotify_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityDisableTransferPointInteractionNotify_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityDisableTransferPointInteractionNotify)(nil), // 0: proto.ActivityDisableTransferPointInteractionNotify
|
|
||||||
(*Uint32Pair)(nil), // 1: proto.Uint32Pair
|
|
||||||
}
|
|
||||||
var file_ActivityDisableTransferPointInteractionNotify_proto_depIdxs = []int32{
|
|
||||||
1, // 0: proto.ActivityDisableTransferPointInteractionNotify.scene_point_pair:type_name -> proto.Uint32Pair
|
|
||||||
1, // [1:1] is the sub-list for method output_type
|
|
||||||
1, // [1:1] is the sub-list for method input_type
|
|
||||||
1, // [1:1] is the sub-list for extension type_name
|
|
||||||
1, // [1:1] is the sub-list for extension extendee
|
|
||||||
0, // [0:1] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityDisableTransferPointInteractionNotify_proto_init() }
|
|
||||||
func file_ActivityDisableTransferPointInteractionNotify_proto_init() {
|
|
||||||
if File_ActivityDisableTransferPointInteractionNotify_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_Uint32Pair_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityDisableTransferPointInteractionNotify); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityDisableTransferPointInteractionNotify_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityDisableTransferPointInteractionNotify_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityDisableTransferPointInteractionNotify_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityDisableTransferPointInteractionNotify_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityDisableTransferPointInteractionNotify_proto = out.File
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_rawDesc = nil
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_goTypes = nil
|
|
||||||
file_ActivityDisableTransferPointInteractionNotify_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,179 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityDungeonAvatar.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type ActivityDungeonAvatar struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
AvatarId uint32 `protobuf:"varint,1,opt,name=avatar_id,json=avatarId,proto3" json:"avatar_id,omitempty"`
|
|
||||||
IsTrial bool `protobuf:"varint,2,opt,name=is_trial,json=isTrial,proto3" json:"is_trial,omitempty"`
|
|
||||||
CostumeId uint32 `protobuf:"varint,3,opt,name=costume_id,json=costumeId,proto3" json:"costume_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDungeonAvatar) Reset() {
|
|
||||||
*x = ActivityDungeonAvatar{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityDungeonAvatar_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDungeonAvatar) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityDungeonAvatar) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityDungeonAvatar) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityDungeonAvatar_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityDungeonAvatar.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityDungeonAvatar) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityDungeonAvatar_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDungeonAvatar) GetAvatarId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.AvatarId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDungeonAvatar) GetIsTrial() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.IsTrial
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityDungeonAvatar) GetCostumeId() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.CostumeId
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityDungeonAvatar_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityDungeonAvatar_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x1b, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x44, 0x75, 0x6e, 0x67, 0x65, 0x6f,
|
|
||||||
0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x6e, 0x0a, 0x15, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
|
|
||||||
0x44, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1b, 0x0a,
|
|
||||||
0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
|
|
||||||
0x52, 0x08, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73,
|
|
||||||
0x5f, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73,
|
|
||||||
0x54, 0x72, 0x69, 0x61, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x73, 0x74, 0x75, 0x6d, 0x65,
|
|
||||||
0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x63, 0x6f, 0x73, 0x74, 0x75,
|
|
||||||
0x6d, 0x65, 0x49, 0x64, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
||||||
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityDungeonAvatar_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityDungeonAvatar_proto_rawDescData = file_ActivityDungeonAvatar_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityDungeonAvatar_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityDungeonAvatar_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityDungeonAvatar_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityDungeonAvatar_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityDungeonAvatar_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityDungeonAvatar_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
||||||
var file_ActivityDungeonAvatar_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityDungeonAvatar)(nil), // 0: proto.ActivityDungeonAvatar
|
|
||||||
}
|
|
||||||
var file_ActivityDungeonAvatar_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityDungeonAvatar_proto_init() }
|
|
||||||
func file_ActivityDungeonAvatar_proto_init() {
|
|
||||||
if File_ActivityDungeonAvatar_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityDungeonAvatar_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityDungeonAvatar); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityDungeonAvatar_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 1,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityDungeonAvatar_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityDungeonAvatar_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityDungeonAvatar_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityDungeonAvatar_proto = out.File
|
|
||||||
file_ActivityDungeonAvatar_proto_rawDesc = nil
|
|
||||||
file_ActivityDungeonAvatar_proto_goTypes = nil
|
|
||||||
file_ActivityDungeonAvatar_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,215 +0,0 @@
|
|||||||
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
|
||||||
// Copyright (C) 2022 Sorapointa Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.14.0
|
|
||||||
// source: ActivityFriendGiftWishData.proto
|
|
||||||
|
|
||||||
package proto
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type ActivityFriendGiftWishData struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
Nickname string `protobuf:"bytes,7,opt,name=nickname,proto3" json:"nickname,omitempty"`
|
|
||||||
RemarkName string `protobuf:"bytes,3,opt,name=remark_name,json=remarkName,proto3" json:"remark_name,omitempty"`
|
|
||||||
ProfilePicture *ProfilePicture `protobuf:"bytes,11,opt,name=profile_picture,json=profilePicture,proto3" json:"profile_picture,omitempty"`
|
|
||||||
GiftNumMap map[uint32]uint32 `protobuf:"bytes,9,rep,name=gift_num_map,json=giftNumMap,proto3" json:"gift_num_map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
|
|
||||||
Uid uint32 `protobuf:"varint,8,opt,name=uid,proto3" json:"uid,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) Reset() {
|
|
||||||
*x = ActivityFriendGiftWishData{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_ActivityFriendGiftWishData_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ActivityFriendGiftWishData) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_ActivityFriendGiftWishData_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ActivityFriendGiftWishData.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ActivityFriendGiftWishData) Descriptor() ([]byte, []int) {
|
|
||||||
return file_ActivityFriendGiftWishData_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) GetNickname() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Nickname
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) GetRemarkName() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.RemarkName
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) GetProfilePicture() *ProfilePicture {
|
|
||||||
if x != nil {
|
|
||||||
return x.ProfilePicture
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) GetGiftNumMap() map[uint32]uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.GiftNumMap
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ActivityFriendGiftWishData) GetUid() uint32 {
|
|
||||||
if x != nil {
|
|
||||||
return x.Uid
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_ActivityFriendGiftWishData_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_ActivityFriendGiftWishData_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x20, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64,
|
|
||||||
0x47, 0x69, 0x66, 0x74, 0x57, 0x69, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f,
|
|
||||||
0x74, 0x6f, 0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x14, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
||||||
0x6c, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
|
|
||||||
0xbf, 0x02, 0x0a, 0x1a, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x46, 0x72, 0x69, 0x65,
|
|
||||||
0x6e, 0x64, 0x47, 0x69, 0x66, 0x74, 0x57, 0x69, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a,
|
|
||||||
0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
|
|
||||||
0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65,
|
|
||||||
0x6d, 0x61, 0x72, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
||||||
0x0a, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x0f, 0x70,
|
|
||||||
0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0b,
|
|
||||||
0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x50, 0x72, 0x6f,
|
|
||||||
0x66, 0x69, 0x6c, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x52, 0x0e, 0x70, 0x72, 0x6f,
|
|
||||||
0x66, 0x69, 0x6c, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x53, 0x0a, 0x0c, 0x67,
|
|
||||||
0x69, 0x66, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x5f, 0x6d, 0x61, 0x70, 0x18, 0x09, 0x20, 0x03, 0x28,
|
|
||||||
0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69,
|
|
||||||
0x74, 0x79, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x47, 0x69, 0x66, 0x74, 0x57, 0x69, 0x73, 0x68,
|
|
||||||
0x44, 0x61, 0x74, 0x61, 0x2e, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61, 0x70, 0x45,
|
|
||||||
0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x67, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61, 0x70,
|
|
||||||
0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x75,
|
|
||||||
0x69, 0x64, 0x1a, 0x3d, 0x0a, 0x0f, 0x47, 0x69, 0x66, 0x74, 0x4e, 0x75, 0x6d, 0x4d, 0x61, 0x70,
|
|
||||||
0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
|
|
||||||
0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
|
||||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
|
|
||||||
0x01, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70,
|
|
||||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_ActivityFriendGiftWishData_proto_rawDescOnce sync.Once
|
|
||||||
file_ActivityFriendGiftWishData_proto_rawDescData = file_ActivityFriendGiftWishData_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_ActivityFriendGiftWishData_proto_rawDescGZIP() []byte {
|
|
||||||
file_ActivityFriendGiftWishData_proto_rawDescOnce.Do(func() {
|
|
||||||
file_ActivityFriendGiftWishData_proto_rawDescData = protoimpl.X.CompressGZIP(file_ActivityFriendGiftWishData_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_ActivityFriendGiftWishData_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_ActivityFriendGiftWishData_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
||||||
var file_ActivityFriendGiftWishData_proto_goTypes = []interface{}{
|
|
||||||
(*ActivityFriendGiftWishData)(nil), // 0: proto.ActivityFriendGiftWishData
|
|
||||||
nil, // 1: proto.ActivityFriendGiftWishData.GiftNumMapEntry
|
|
||||||
(*ProfilePicture)(nil), // 2: proto.ProfilePicture
|
|
||||||
}
|
|
||||||
var file_ActivityFriendGiftWishData_proto_depIdxs = []int32{
|
|
||||||
2, // 0: proto.ActivityFriendGiftWishData.profile_picture:type_name -> proto.ProfilePicture
|
|
||||||
1, // 1: proto.ActivityFriendGiftWishData.gift_num_map:type_name -> proto.ActivityFriendGiftWishData.GiftNumMapEntry
|
|
||||||
2, // [2:2] is the sub-list for method output_type
|
|
||||||
2, // [2:2] is the sub-list for method input_type
|
|
||||||
2, // [2:2] is the sub-list for extension type_name
|
|
||||||
2, // [2:2] is the sub-list for extension extendee
|
|
||||||
0, // [0:2] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_ActivityFriendGiftWishData_proto_init() }
|
|
||||||
func file_ActivityFriendGiftWishData_proto_init() {
|
|
||||||
if File_ActivityFriendGiftWishData_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
file_ProfilePicture_proto_init()
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_ActivityFriendGiftWishData_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*ActivityFriendGiftWishData); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_ActivityFriendGiftWishData_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 2,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_ActivityFriendGiftWishData_proto_goTypes,
|
|
||||||
DependencyIndexes: file_ActivityFriendGiftWishData_proto_depIdxs,
|
|
||||||
MessageInfos: file_ActivityFriendGiftWishData_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_ActivityFriendGiftWishData_proto = out.File
|
|
||||||
file_ActivityFriendGiftWishData_proto_rawDesc = nil
|
|
||||||
file_ActivityFriendGiftWishData_proto_goTypes = nil
|
|
||||||
file_ActivityFriendGiftWishData_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user