Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
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
YGOPRO-520DIY
ygopro
Commits
8964d897
Commit
8964d897
authored
Jun 30, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into server
parents
63e9ba05
f9935999
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
9 deletions
+15
-9
.ci/assets-locale.sh
.ci/assets-locale.sh
+1
-1
gframe/replay_mode.cpp
gframe/replay_mode.cpp
+2
-2
gframe/single_duel.cpp
gframe/single_duel.cpp
+2
-2
gframe/single_mode.cpp
gframe/single_mode.cpp
+6
-0
gframe/tag_duel.cpp
gframe/tag_duel.cpp
+3
-3
system.conf
system.conf
+1
-1
No files found.
.ci/assets-locale.sh
View file @
8964d897
...
@@ -4,7 +4,7 @@ set -o errexit
...
@@ -4,7 +4,7 @@ set -o errexit
source
.ci/asset-branch
source
.ci/asset-branch
# ygopro-database
# ygopro-database
apt update
&&
apt
-y
install
wget git libarchive-tools sqlite3
apt update
&&
apt
-y
install
wget git libarchive-tools sqlite3
git clone
--depth
=
1
-b
"
$ASSET_BRANCH_NAME
"
https://code.moenext.com/mycard
/ygopro-database
git clone
--depth
=
1
-b
master https://code.moenext.com/nanahira
/ygopro-database
cp
-rf
./ygopro-database/locales/
$TARGET_LOCALE
/strings.conf
.
cp
-rf
./ygopro-database/locales/
$TARGET_LOCALE
/strings.conf
.
cp
-rf
./ygopro-database/locales/
$TARGET_LOCALE
/servers.conf
.
cp
-rf
./ygopro-database/locales/
$TARGET_LOCALE
/servers.conf
.
rm
-f
cards.cdb
rm
-f
cards.cdb
...
...
gframe/replay_mode.cpp
View file @
8964d897
...
@@ -183,9 +183,9 @@ bool ReplayMode::StartDuel() {
...
@@ -183,9 +183,9 @@ bool ReplayMode::StartDuel() {
BufferIO
::
EncodeUTF8
(
cur_replay
.
players
[
i
].
c_str
(),
player_name_buf_u
);
BufferIO
::
EncodeUTF8
(
cur_replay
.
players
[
i
].
c_str
(),
player_name_buf_u
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_name_%d"
,
i
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_name_%d"
,
i
);
set_registry_value
(
pduel
,
player_key_buf
,
player_name_buf_u
);
set_registry_value
(
pduel
,
player_key_buf
,
player_name_buf_u
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_type_%d"
,
i
);
set_registry_value
(
pduel
,
player_key_buf
,
std
::
to_string
(
i
).
c_str
());
}
}
set_registry_value
(
pduel
,
"player_type_0"
,
"0"
);
set_registry_value
(
pduel
,
"player_type_1"
,
"1"
);
mainGame
->
dInfo
.
duel_rule
=
cur_replay
.
params
.
duel_flag
>>
16
;
mainGame
->
dInfo
.
duel_rule
=
cur_replay
.
params
.
duel_flag
>>
16
;
set_player_info
(
pduel
,
0
,
cur_replay
.
params
.
start_lp
,
cur_replay
.
params
.
start_hand
,
cur_replay
.
params
.
draw_count
);
set_player_info
(
pduel
,
0
,
cur_replay
.
params
.
start_lp
,
cur_replay
.
params
.
start_hand
,
cur_replay
.
params
.
draw_count
);
set_player_info
(
pduel
,
1
,
cur_replay
.
params
.
start_lp
,
cur_replay
.
params
.
start_hand
,
cur_replay
.
params
.
draw_count
);
set_player_info
(
pduel
,
1
,
cur_replay
.
params
.
start_lp
,
cur_replay
.
params
.
start_hand
,
cur_replay
.
params
.
draw_count
);
...
...
gframe/single_duel.cpp
View file @
8964d897
...
@@ -612,9 +612,9 @@ void SingleDuel::TPResult(DuelPlayer* dp, unsigned char tp) {
...
@@ -612,9 +612,9 @@ void SingleDuel::TPResult(DuelPlayer* dp, unsigned char tp) {
BufferIO
::
EncodeUTF8
(
player_name_buf
,
player_name_buf_u
);
BufferIO
::
EncodeUTF8
(
player_name_buf
,
player_name_buf_u
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_name_%d"
,
i
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_name_%d"
,
i
);
set_registry_value
(
pduel
,
player_key_buf
,
player_name_buf_u
);
set_registry_value
(
pduel
,
player_key_buf
,
player_name_buf_u
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_type_%d"
,
i
);
set_registry_value
(
pduel
,
player_key_buf
,
std
::
to_string
(
players
[
i
]
->
type
).
c_str
());
}
}
set_registry_value
(
pduel
,
"player_type_0"
,
swapped
?
"1"
:
"0"
);
set_registry_value
(
pduel
,
"player_type_1"
,
swapped
?
"0"
:
"1"
);
set_player_info
(
pduel
,
0
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
set_player_info
(
pduel
,
0
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
set_player_info
(
pduel
,
1
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
set_player_info
(
pduel
,
1
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
preload_script
(
pduel
,
"./script/special.lua"
);
preload_script
(
pduel
,
"./script/special.lua"
);
...
...
gframe/single_mode.cpp
View file @
8964d897
...
@@ -53,6 +53,12 @@ int SingleMode::SinglePlayThread() {
...
@@ -53,6 +53,12 @@ int SingleMode::SinglePlayThread() {
set_message_handler
(
SingleMode
::
MessageHandler
);
set_message_handler
(
SingleMode
::
MessageHandler
);
pduel
=
create_duel_v2
(
duel_seed
);
pduel
=
create_duel_v2
(
duel_seed
);
mainGame
->
InjectEnvToRegistry
(
pduel
);
mainGame
->
InjectEnvToRegistry
(
pduel
);
set_registry_value
(
pduel
,
"duel_mode"
,
"puzzle"
);
set_registry_value
(
pduel
,
"start_lp"
,
std
::
to_string
(
start_lp
).
c_str
());
set_registry_value
(
pduel
,
"start_hand"
,
std
::
to_string
(
start_hand
).
c_str
());
set_registry_value
(
pduel
,
"draw_count"
,
std
::
to_string
(
draw_count
).
c_str
());
set_registry_value
(
pduel
,
"player_type_0"
,
swapped
?
"1"
:
"0"
);
set_registry_value
(
pduel
,
"player_type_1"
,
swapped
?
"0"
:
"1"
);
set_player_info
(
pduel
,
0
,
start_lp
,
start_hand
,
draw_count
);
set_player_info
(
pduel
,
0
,
start_lp
,
start_hand
,
draw_count
);
set_player_info
(
pduel
,
1
,
start_lp
,
start_hand
,
draw_count
);
set_player_info
(
pduel
,
1
,
start_lp
,
start_hand
,
draw_count
);
preload_script
(
pduel
,
"./script/special.lua"
);
preload_script
(
pduel
,
"./script/special.lua"
);
...
...
gframe/tag_duel.cpp
View file @
8964d897
...
@@ -583,14 +583,14 @@ void TagDuel::TPResult(DuelPlayer* dp, unsigned char tp) {
...
@@ -583,14 +583,14 @@ void TagDuel::TPResult(DuelPlayer* dp, unsigned char tp) {
wchar_t
player_name_buf
[
40
];
wchar_t
player_name_buf
[
40
];
char
player_name_buf_u
[
40
];
char
player_name_buf_u
[
40
];
char
player_key_buf
[
23
];
char
player_key_buf
[
23
];
for
(
int
i
=
0
;
i
<
2
;
++
i
)
{
for
(
int
i
=
0
;
i
<
4
;
++
i
)
{
BufferIO
::
CopyCharArray
(
players
[
i
]
->
name
,
player_name_buf
);
BufferIO
::
CopyCharArray
(
players
[
i
]
->
name
,
player_name_buf
);
BufferIO
::
EncodeUTF8
(
player_name_buf
,
player_name_buf_u
);
BufferIO
::
EncodeUTF8
(
player_name_buf
,
player_name_buf_u
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_name_%d"
,
i
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_name_%d"
,
i
);
set_registry_value
(
pduel
,
player_key_buf
,
player_name_buf_u
);
set_registry_value
(
pduel
,
player_key_buf
,
player_name_buf_u
);
std
::
snprintf
(
player_key_buf
,
sizeof
(
player_key_buf
),
"player_type_%d"
,
i
);
set_registry_value
(
pduel
,
player_key_buf
,
std
::
to_string
(
players
[
i
]
->
type
).
c_str
());
}
}
set_registry_value
(
pduel
,
"player_type_0"
,
swapped
?
"1"
:
"0"
);
set_registry_value
(
pduel
,
"player_type_1"
,
swapped
?
"0"
:
"1"
);
set_player_info
(
pduel
,
0
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
set_player_info
(
pduel
,
0
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
set_player_info
(
pduel
,
1
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
set_player_info
(
pduel
,
1
,
host_info
.
start_lp
,
host_info
.
start_hand
,
host_info
.
draw_count
);
preload_script
(
pduel
,
"./script/special.lua"
);
preload_script
(
pduel
,
"./script/special.lua"
);
...
...
system.conf
View file @
8964d897
...
@@ -4,7 +4,7 @@ use_d3d = 0
...
@@ -4,7 +4,7 @@ use_d3d = 0
use_image_scale
=
1
use_image_scale
=
1
use_image_scale_multi_thread
=
1
use_image_scale_multi_thread
=
1
use_image_load_background_thread
=
0
use_image_load_background_thread
=
0
pro_version
=
496
1
pro_version
=
496
2
freever
=
1
freever
=
1
antialias
=
2
antialias
=
2
errorlog
=
3
errorlog
=
3
...
...
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