Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
love_飞影
Neos
Commits
631b5df1
Commit
631b5df1
authored
Oct 07, 2022
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync neos-protobuf
parent
a669016d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
16 deletions
+51
-16
neos-protobuf
neos-protobuf
+1
-1
src/api/idl/ocgcore.ts
src/api/idl/ocgcore.ts
+50
-15
No files found.
neos-protobuf
@
ed6ff3b1
Subproject commit
1484721f97b2353631d11f869c8371a46a7def9d
Subproject commit
ed6ff3b15aaa74e35feb40d33aa518b52a275402
src/api/idl/ocgcore.ts
View file @
631b5df1
...
@@ -1295,37 +1295,55 @@ export namespace ygopro {
...
@@ -1295,37 +1295,55 @@ export namespace ygopro {
export
class
StocTypeChange
extends
pb_1
.
Message
{
export
class
StocTypeChange
extends
pb_1
.
Message
{
#
one_of_decls
:
number
[][]
=
[];
#
one_of_decls
:
number
[][]
=
[];
constructor
(
data
?:
any
[]
|
{
constructor
(
data
?:
any
[]
|
{
type
?:
number
;
self_type
?:
StocTypeChange
.
SelfType
;
is_host
?:
boolean
;
})
{
})
{
super
();
super
();
pb_1
.
Message
.
initialize
(
this
,
Array
.
isArray
(
data
)
?
data
:
[],
0
,
-
1
,
[],
this
.
#
one_of_decls
);
pb_1
.
Message
.
initialize
(
this
,
Array
.
isArray
(
data
)
?
data
:
[],
0
,
-
1
,
[],
this
.
#
one_of_decls
);
if
(
!
Array
.
isArray
(
data
)
&&
typeof
data
==
"
object
"
)
{
if
(
!
Array
.
isArray
(
data
)
&&
typeof
data
==
"
object
"
)
{
if
(
"
type
"
in
data
&&
data
.
type
!=
undefined
)
{
if
(
"
self_type
"
in
data
&&
data
.
self_type
!=
undefined
)
{
this
.
type
=
data
.
type
;
this
.
self_type
=
data
.
self_type
;
}
if
(
"
is_host
"
in
data
&&
data
.
is_host
!=
undefined
)
{
this
.
is_host
=
data
.
is_host
;
}
}
}
}
}
}
get
type
()
{
get
self_
type
()
{
return
pb_1
.
Message
.
getFieldWithDefault
(
this
,
1
,
0
)
as
number
;
return
pb_1
.
Message
.
getFieldWithDefault
(
this
,
1
,
StocTypeChange
.
SelfType
.
UNKNOWN
)
as
StocTypeChange
.
SelfType
;
}
}
set
type
(
value
:
number
)
{
set
self_type
(
value
:
StocTypeChange
.
SelfType
)
{
pb_1
.
Message
.
setField
(
this
,
1
,
value
);
pb_1
.
Message
.
setField
(
this
,
1
,
value
);
}
}
get
is_host
()
{
return
pb_1
.
Message
.
getFieldWithDefault
(
this
,
2
,
false
)
as
boolean
;
}
set
is_host
(
value
:
boolean
)
{
pb_1
.
Message
.
setField
(
this
,
2
,
value
);
}
static
fromObject
(
data
:
{
static
fromObject
(
data
:
{
type
?:
number
;
self_type
?:
StocTypeChange
.
SelfType
;
is_host
?:
boolean
;
}):
StocTypeChange
{
}):
StocTypeChange
{
const
message
=
new
StocTypeChange
({});
const
message
=
new
StocTypeChange
({});
if
(
data
.
type
!=
null
)
{
if
(
data
.
self_type
!=
null
)
{
message
.
type
=
data
.
type
;
message
.
self_type
=
data
.
self_type
;
}
if
(
data
.
is_host
!=
null
)
{
message
.
is_host
=
data
.
is_host
;
}
}
return
message
;
return
message
;
}
}
toObject
()
{
toObject
()
{
const
data
:
{
const
data
:
{
type
?:
number
;
self_type
?:
StocTypeChange
.
SelfType
;
is_host
?:
boolean
;
}
=
{};
}
=
{};
if
(
this
.
type
!=
null
)
{
if
(
this
.
self_type
!=
null
)
{
data
.
type
=
this
.
type
;
data
.
self_type
=
this
.
self_type
;
}
if
(
this
.
is_host
!=
null
)
{
data
.
is_host
=
this
.
is_host
;
}
}
return
data
;
return
data
;
}
}
...
@@ -1333,8 +1351,10 @@ export namespace ygopro {
...
@@ -1333,8 +1351,10 @@ export namespace ygopro {
serialize
(
w
:
pb_1
.
BinaryWriter
):
void
;
serialize
(
w
:
pb_1
.
BinaryWriter
):
void
;
serialize
(
w
?:
pb_1
.
BinaryWriter
):
Uint8Array
|
void
{
serialize
(
w
?:
pb_1
.
BinaryWriter
):
Uint8Array
|
void
{
const
writer
=
w
||
new
pb_1
.
BinaryWriter
();
const
writer
=
w
||
new
pb_1
.
BinaryWriter
();
if
(
this
.
type
!=
0
)
if
(
this
.
self_type
!=
StocTypeChange
.
SelfType
.
UNKNOWN
)
writer
.
writeInt32
(
1
,
this
.
type
);
writer
.
writeEnum
(
1
,
this
.
self_type
);
if
(
this
.
is_host
!=
false
)
writer
.
writeBool
(
2
,
this
.
is_host
);
if
(
!
w
)
if
(
!
w
)
return
writer
.
getResultBuffer
();
return
writer
.
getResultBuffer
();
}
}
...
@@ -1345,7 +1365,10 @@ export namespace ygopro {
...
@@ -1345,7 +1365,10 @@ export namespace ygopro {
break
;
break
;
switch
(
reader
.
getFieldNumber
())
{
switch
(
reader
.
getFieldNumber
())
{
case
1
:
case
1
:
message
.
type
=
reader
.
readInt32
();
message
.
self_type
=
reader
.
readEnum
();
break
;
case
2
:
message
.
is_host
=
reader
.
readBool
();
break
;
break
;
default
:
reader
.
skipField
();
default
:
reader
.
skipField
();
}
}
...
@@ -1359,6 +1382,18 @@ export namespace ygopro {
...
@@ -1359,6 +1382,18 @@ export namespace ygopro {
return
StocTypeChange
.
deserialize
(
bytes
);
return
StocTypeChange
.
deserialize
(
bytes
);
}
}
}
}
export
namespace
StocTypeChange
{
export
enum
SelfType
{
UNKNOWN
=
0
,
PLAYER1
=
1
,
PLAYER2
=
2
,
PLAYER3
=
3
,
PLAYER4
=
4
,
PLAYER5
=
5
,
PLAYER6
=
6
,
OBSERVER
=
100
}
}
export
class
StocHsPlayerChange
extends
pb_1
.
Message
{
export
class
StocHsPlayerChange
extends
pb_1
.
Message
{
#
one_of_decls
:
number
[][]
=
[];
#
one_of_decls
:
number
[][]
=
[];
constructor
(
data
?:
any
[]
|
{
constructor
(
data
?:
any
[]
|
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment