rename oneof part 2

This commit is contained in:
Akbar Yahya 2023-01-29 12:22:25 +08:00
parent 73d5fa37dd
commit e07d12ad71
12 changed files with 13 additions and 13 deletions

View File

@ -9,7 +9,7 @@ message OpActivityInfo {
uint32 beginTime = 8; uint32 beginTime = 8;
uint32 activityId = 15; uint32 activityId = 15;
bool isHasChange = 3; bool isHasChange = 3;
oneof LLDCBIMKJLJ { oneof detail {
BonusInfo bonus_info = 11; BonusInfo bonus_info = 11;
} }
uint32 endTime = 10; uint32 endTime = 10;

View File

@ -2,7 +2,7 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
message PropValue { message PropValue {
uint32 type = 1; uint32 type = 1;
oneof CAPPJMGFHDP { oneof value {
int64 ival = 2; int64 ival = 2;
float fval = 3; float fval = 3;
} }

View File

@ -17,7 +17,7 @@ message QuickUseWidgetRsp {
int32 retcode = 8; int32 retcode = 8;
uint32 materialId = 6; uint32 materialId = 6;
oneof BDMFCFAMHJK { oneof param {
DetectorData detector_data = 1; DetectorData detector_data = 1;
ClientCollectorData client_collector_data = 7; ClientCollectorData client_collector_data = 7;
SkyCrystalDetectorQuickUseResult sky_crystal_detector_quick_use_result = 139827; SkyCrystalDetectorQuickUseResult sky_crystal_detector_quick_use_result = 139827;

View File

@ -9,11 +9,11 @@ message RoutePoint {
Vector position = 1; Vector position = 1;
float arriveRange = 2; float arriveRange = 2;
bool hasReachEvent = 3; bool hasReachEvent = 3;
oneof APGGKOIICFF { oneof move_params {
float velocity = 11; float velocity = 11;
float time = 12; float time = 12;
} }
oneof DLHLONCCBNN { oneof rotate_params {
Vector rotation = 21; Vector rotation = 21;
RotationSpeed rotation_speed = 22; RotationSpeed rotation_speed = 22;
RotationSpeed axis_speed = 23; RotationSpeed axis_speed = 23;

View File

@ -8,7 +8,7 @@ import "ScoreChallengeInfo.proto";
message SalvageChallengeInfo { message SalvageChallengeInfo {
bool isUnlock = 2; bool isUnlock = 2;
uint32 challengeType = 14; uint32 challengeType = 14;
oneof CLJGLJPJCIN { oneof challenge_detail {
BundleInfo bundle_info = 8; BundleInfo bundle_info = 8;
ScoreChallengeInfo score_challenge_info = 5; ScoreChallengeInfo score_challenge_info = 5;
uint32 boss_challenge_id = 1; uint32 boss_challenge_id = 1;

View File

@ -25,7 +25,7 @@ message SceneEntityInfo {
repeated FightPropPair fightPropList = 6; repeated FightPropPair fightPropList = 6;
uint32 lifeState = 7; uint32 lifeState = 7;
repeated AnimatorParameterValueInfoPair animatorParaList = 9; repeated AnimatorParameterValueInfoPair animatorParaList = 9;
oneof EJICMKHBLIJ { oneof entity {
Avatar avatar = 10; Avatar avatar = 10;
Monster monster = 11; Monster monster = 11;
Npc npc = 12; Npc npc = 12;

View File

@ -17,7 +17,7 @@ message ShopCardProduct {
uint32 days = 5; uint32 days = 5;
uint32 remainRewardDays = 6; uint32 remainRewardDays = 6;
uint32 cardProductType = 7; uint32 cardProductType = 7;
oneof KNKJCIMNEPF { oneof extra_card_data {
ResinCard resin_card = 101; ResinCard resin_card = 101;
} }
} }

View File

@ -7,7 +7,7 @@ import "Reliquary.proto";
import "Weapon.proto"; import "Weapon.proto";
message ShowEquip { message ShowEquip {
uint32 itemId = 1; uint32 itemId = 1;
oneof DCMMPEONFNE { oneof detail {
Reliquary reliquary = 2; Reliquary reliquary = 2;
Weapon weapon = 3; Weapon weapon = 3;
} }

View File

@ -11,7 +11,7 @@ message UnlockPersonalLineRsp {
int32 retcode = 5; int32 retcode = 5;
uint32 personalLineId = 6; uint32 personalLineId = 6;
oneof LHEKAHHHJLL { oneof param {
uint32 level = 3; uint32 level = 3;
uint32 chapter_id = 14; uint32 chapter_id = 14;
} }

View File

@ -16,7 +16,7 @@ message WidgetDoBagReq {
} }
uint32 materialId = 12; uint32 materialId = 12;
oneof CEAOGJOLPHD { oneof op_info {
LocationInfo location_info = 135; LocationInfo location_info = 135;
CreatorInfo widget_creator_info = 362; CreatorInfo widget_creator_info = 362;
} }

View File

@ -28,7 +28,7 @@ message WindSeedClientNotify {
bytes areaCode = 1; bytes areaCode = 1;
} }
oneof BANLMNJCGFJ { oneof notify {
RefreshNotify refresh_notify = 11; RefreshNotify refresh_notify = 11;
AddWindBulletNotify add_wind_bullet_notify = 8; AddWindBulletNotify add_wind_bullet_notify = 8;
AreaNotify area_notify = 2; AreaNotify area_notify = 2;

View File

@ -15,7 +15,7 @@ message WorldPlayerDieNotify {
PlayerDieType dieType = 10; PlayerDieType dieType = 10;
uint32 murdererEntityId = 8; uint32 murdererEntityId = 8;
oneof ABKAIMJDBCD { oneof entity {
uint32 monster_id = 1; uint32 monster_id = 1;
uint32 gadget_id = 4; uint32 gadget_id = 4;
} }