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
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
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
MyCard
Neos
Commits
7cdee8e9
Commit
7cdee8e9
authored
Sep 02, 2023
by
Chunchi Che
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feat/reload' into 'main'
支持断线重连 See merge request
!291
parents
ad0a228f
31db6b11
Pipeline
#23328
passed with stages
in 12 minutes and 28 seconds
Changes
8
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
71 additions
and
36 deletions
+71
-36
src/api/ocgcore/ocgAdapter/stoc/stocGameMsg/reloadField.ts
src/api/ocgcore/ocgAdapter/stoc/stocGameMsg/reloadField.ts
+0
-16
src/service/duel/reloadField.ts
src/service/duel/reloadField.ts
+41
-2
src/service/duel/start.ts
src/service/duel/start.ts
+3
-15
src/service/duel/updateData.ts
src/service/duel/updateData.ts
+8
-1
src/service/utils/genCard.ts
src/service/utils/genCard.ts
+17
-0
src/service/utils/index.ts
src/service/utils/index.ts
+1
-0
src/stores/cardStore.ts
src/stores/cardStore.ts
+0
-1
src/ui/Duel/PlayMat/Mat/index.tsx
src/ui/Duel/PlayMat/Mat/index.tsx
+1
-1
No files found.
src/api/ocgcore/ocgAdapter/stoc/stocGameMsg/reloadField.ts
View file @
7cdee8e9
...
@@ -28,14 +28,6 @@ export default (data: Uint8Array) => {
...
@@ -28,14 +28,6 @@ export default (data: Uint8Array) => {
overlay_count
,
overlay_count
,
}),
}),
);
);
}
else
{
zone_actions
.
push
(
new
MsgReloadField
.
ZoneAction
({
zone
:
ygopro
.
CardZone
.
MZONE
,
sequence
,
position
:
ygopro
.
CardPosition
.
FACEDOWN
,
}),
);
}
}
}
}
...
@@ -52,14 +44,6 @@ export default (data: Uint8Array) => {
...
@@ -52,14 +44,6 @@ export default (data: Uint8Array) => {
position
:
numberToCardPosition
(
position
),
position
:
numberToCardPosition
(
position
),
}),
}),
);
);
}
else
{
zone_actions
.
push
(
new
MsgReloadField
.
ZoneAction
({
zone
:
ygopro
.
CardZone
.
SZONE
,
sequence
,
position
:
ygopro
.
CardPosition
.
FACEDOWN
,
}),
);
}
}
}
}
...
...
src/service/duel/reloadField.ts
View file @
7cdee8e9
import
{
v4
as
v4uuid
}
from
"
uuid
"
;
import
{
ygopro
}
from
"
@/api
"
;
import
{
ygopro
}
from
"
@/api
"
;
import
{
cardStore
,
matStore
}
from
"
@/stores
"
;
import
{
genCard
}
from
"
../utils
"
;
type
MsgReloadField
=
ygopro
.
StocGameMessage
.
MsgReloadField
;
type
MsgReloadField
=
ygopro
.
StocGameMessage
.
MsgReloadField
;
export
default
(
_field
:
MsgReloadField
)
=>
{
export
default
(
field
:
MsgReloadField
)
=>
{
// TODO: 断线重连比较复杂,先留着后面时实现
// 重置
cardStore
.
reset
();
const
actions
=
field
.
actions
;
actions
.
forEach
((
action
)
=>
{
const
controller
=
action
.
player
;
// 更新生命值
matStore
.
initInfo
.
of
(
controller
).
life
=
action
.
lp
;
// 更新卡片集合
const
cards
=
action
.
zone_actions
.
map
((
zoneAction
)
=>
Array
.
from
({
length
:
zoneAction
.
overlay_count
+
1
}).
map
(
(
_
,
overlaySequence
)
=>
genCard
({
uuid
:
v4uuid
(),
code
:
0
,
location
:
new
ygopro
.
CardLocation
({
controller
,
zone
:
zoneAction
.
zone
,
sequence
:
zoneAction
.
sequence
,
is_overlay
:
overlaySequence
>
0
,
overlay_sequence
:
Math
.
min
(
overlaySequence
-
1
,
0
),
position
:
zoneAction
.
position
,
}),
counters
:
{},
idleInteractivities
:
[],
meta
:
{
id
:
0
,
data
:
{},
text
:
{}
},
isToken
:
false
,
selected
:
false
,
}),
),
)
.
flat
();
cardStore
.
inner
.
push
(...
cards
);
});
};
};
src/service/duel/start.ts
View file @
7cdee8e9
import
{
flatten
}
from
"
lodash-es
"
;
import
{
flatten
}
from
"
lodash-es
"
;
import
{
v4
as
v4uuid
}
from
"
uuid
"
;
import
{
v4
as
v4uuid
}
from
"
uuid
"
;
import
{
proxy
}
from
"
valtio
"
;
import
{
subscribeKey
}
from
"
valtio/utils
"
;
import
PlayerType
=
ygopro
.
StocGameMessage
.
MsgStart
.
PlayerType
;
import
PlayerType
=
ygopro
.
StocGameMessage
.
MsgStart
.
PlayerType
;
import
{
fetchCard
,
ygopro
}
from
"
@/api
"
;
import
{
ygopro
}
from
"
@/api
"
;
import
{
useConfig
}
from
"
@/config
"
;
import
{
useConfig
}
from
"
@/config
"
;
import
{
sleep
}
from
"
@/infra
"
;
import
{
sleep
}
from
"
@/infra
"
;
import
{
import
{
cardStore
,
cardStore
,
CardType
,
matStore
,
matStore
,
RoomStage
,
RoomStage
,
roomStore
,
roomStore
,
...
@@ -16,6 +13,8 @@ import {
...
@@ -16,6 +13,8 @@ import {
sideStore
,
sideStore
,
}
from
"
@/stores
"
;
}
from
"
@/stores
"
;
import
{
replayStart
}
from
"
@/ui/Match/ReplayModal
"
;
import
{
replayStart
}
from
"
@/ui/Match/ReplayModal
"
;
import
{
genCard
}
from
"
../utils
"
;
const
TOKEN_SIZE
=
13
;
// 每人场上最多就只可能有13个token
const
TOKEN_SIZE
=
13
;
// 每人场上最多就只可能有13个token
export
default
async
(
start
:
ygopro
.
StocGameMessage
.
MsgStart
)
=>
{
export
default
async
(
start
:
ygopro
.
StocGameMessage
.
MsgStart
)
=>
{
...
@@ -72,7 +71,6 @@ export default async (start: ygopro.StocGameMessage.MsgStart) => {
...
@@ -72,7 +71,6 @@ export default async (start: ygopro.StocGameMessage.MsgStart) => {
sequence
,
sequence
,
position
:
ygopro
.
CardPosition
.
FACEDOWN
,
position
:
ygopro
.
CardPosition
.
FACEDOWN
,
}),
}),
originController
:
i
<
3
?
0
:
1
,
counters
:
{},
counters
:
{},
idleInteractivities
:
[],
idleInteractivities
:
[],
meta
:
{
meta
:
{
...
@@ -101,13 +99,3 @@ export default async (start: ygopro.StocGameMessage.MsgStart) => {
...
@@ -101,13 +99,3 @@ export default async (start: ygopro.StocGameMessage.MsgStart) => {
// 否则在和AI对战时,由于后端给传给前端的`MSG`频率太高,会导致一些问题。
// 否则在和AI对战时,由于后端给传给前端的`MSG`频率太高,会导致一些问题。
await
sleep
(
useConfig
().
startDelay
);
await
sleep
(
useConfig
().
startDelay
);
};
};
// 自动从code推断出occupant
const
genCard
=
(
o
:
CardType
)
=>
{
const
t
=
proxy
(
o
);
subscribeKey
(
t
,
"
code
"
,
async
(
code
)
=>
{
const
meta
=
fetchCard
(
code
??
0
);
t
.
meta
=
meta
;
});
return
t
;
};
src/service/duel/updateData.ts
View file @
7cdee8e9
...
@@ -3,6 +3,7 @@ import { cardStore } from "@/stores";
...
@@ -3,6 +3,7 @@ import { cardStore } from "@/stores";
import
{
callCardMove
}
from
"
@/ui/Duel/PlayMat/Card
"
;
import
{
callCardMove
}
from
"
@/ui/Duel/PlayMat/Card
"
;
import
MsgUpdateData
=
ygopro
.
StocGameMessage
.
MsgUpdateData
;
import
MsgUpdateData
=
ygopro
.
StocGameMessage
.
MsgUpdateData
;
import
{
TYPE_TOKEN
}
from
"
@/common
"
;
export
default
async
(
updateData
:
MsgUpdateData
)
=>
{
export
default
async
(
updateData
:
MsgUpdateData
)
=>
{
const
{
player
:
controller
,
zone
,
actions
}
=
updateData
;
const
{
player
:
controller
,
zone
,
actions
}
=
updateData
;
if
(
controller
!==
undefined
&&
zone
!==
undefined
&&
actions
!==
undefined
)
{
if
(
controller
!==
undefined
&&
zone
!==
undefined
&&
actions
!==
undefined
)
{
...
@@ -17,7 +18,10 @@ export default async (updateData: MsgUpdateData) => {
...
@@ -17,7 +18,10 @@ export default async (updateData: MsgUpdateData) => {
// 目前只更新以下字段
// 目前只更新以下字段
if
(
action
?.
code
>=
0
)
{
if
(
action
?.
code
>=
0
)
{
const
newMeta
=
fetchCard
(
action
.
code
);
const
newMeta
=
fetchCard
(
action
.
code
);
if
(
target
.
code
!==
action
.
code
)
{
// 这个if判断一定要有,不然会触发`genCard`里面的事件
target
.
code
=
action
.
code
;
target
.
code
=
action
.
code
;
}
target
.
meta
=
newMeta
;
target
.
meta
=
newMeta
;
}
}
...
@@ -32,6 +36,9 @@ export default async (updateData: MsgUpdateData) => {
...
@@ -32,6 +36,9 @@ export default async (updateData: MsgUpdateData) => {
}
}
if
(
action
?.
type_
>=
0
)
{
if
(
action
?.
type_
>=
0
)
{
meta
.
data
.
type
=
action
.
type_
;
meta
.
data
.
type
=
action
.
type_
;
if
(
action
.
type_
&
TYPE_TOKEN
)
{
target
.
isToken
=
true
;
}
}
}
if
(
action
?.
level
>=
0
)
{
if
(
action
?.
level
>=
0
)
{
meta
.
data
.
level
=
action
.
level
;
meta
.
data
.
level
=
action
.
level
;
...
...
src/service/utils/genCard.ts
0 → 100644
View file @
7cdee8e9
import
{
proxy
}
from
"
valtio
"
;
import
{
subscribeKey
}
from
"
valtio/utils
"
;
import
{
fetchCard
}
from
"
@/api
"
;
import
{
CardType
}
from
"
@/stores
"
;
// 自动从code推断出meta
//
// TODO: 其实不是很推荐这样做,因为随着项目复杂度增加,这样可能会带来meta更新的时序问题
export
const
genCard
=
(
card
:
CardType
)
=>
{
const
t
=
proxy
(
card
);
subscribeKey
(
t
,
"
code
"
,
async
(
code
)
=>
{
const
meta
=
fetchCard
(
code
);
t
.
meta
=
meta
;
});
return
t
;
};
src/service/utils/index.ts
View file @
7cdee8e9
export
*
from
"
./fetchCheckCardMeta
"
;
export
*
from
"
./fetchCheckCardMeta
"
;
export
*
from
"
./genCard
"
;
src/stores/cardStore.ts
View file @
7cdee8e9
...
@@ -13,7 +13,6 @@ export interface CardType {
...
@@ -13,7 +13,6 @@ export interface CardType {
code
:
number
;
// 卡号
code
:
number
;
// 卡号
meta
:
CardMeta
;
// 卡片元数据
meta
:
CardMeta
;
// 卡片元数据
location
:
ygopro
.
CardLocation
;
location
:
ygopro
.
CardLocation
;
originController
:
number
;
// 在卡组构建之中持有这张卡的玩家,方便reloadField的使用
idleInteractivities
:
Interactivity
<
number
>
[];
// IDLE状态下的互动信息
idleInteractivities
:
Interactivity
<
number
>
[];
// IDLE状态下的互动信息
placeInteractivity
?:
Interactivity
<
{
placeInteractivity
?:
Interactivity
<
{
controller
:
number
;
controller
:
number
;
...
...
src/ui/Duel/PlayMat/Mat/index.tsx
View file @
7cdee8e9
...
@@ -28,7 +28,7 @@ const Cards: React.FC = () => {
...
@@ -28,7 +28,7 @@ const Cards: React.FC = () => {
return
(
return
(
<>
<>
{
Array
.
from
({
length
}).
map
((
_
,
i
)
=>
(
{
Array
.
from
({
length
}).
map
((
_
,
i
)
=>
(
<
Card
key=
{
i
}
idx=
{
i
}
/>
<
Card
key=
{
i
nner
[
i
].
uuid
}
idx=
{
i
}
/>
))
}
))
}
</>
</>
);
);
...
...
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