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
18123aca
Commit
18123aca
authored
Oct 05, 2024
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DataManager: fix FormatType
parent
eb9f6cb1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
15 deletions
+11
-15
gframe/data_manager.cpp
gframe/data_manager.cpp
+10
-13
gframe/data_manager.h
gframe/data_manager.h
+1
-2
No files found.
gframe/data_manager.cpp
View file @
18123aca
...
...
@@ -330,22 +330,19 @@ std::wstring DataManager::FormatRace(unsigned int race) const {
buffer
.
pop_back
();
return
buffer
;
}
const
wchar_t
*
DataManager
::
FormatType
(
int
type
)
{
wchar_t
*
p
=
tpBuffer
;
unsigned
filter
=
1
;
std
::
wstring
DataManager
::
FormatType
(
unsigned
int
type
)
const
{
std
::
wstring
buffer
;
int
i
=
1050
;
for
(;
filter
!=
0x8000000
;
filter
<<=
1
,
++
i
)
{
if
(
type
&
filter
)
{
BufferIO
::
CopyWStrRef
(
GetSysString
(
i
),
p
,
16
);
*
p
=
L'|'
;
*++
p
=
0
;
for
(
unsigned
filter
=
TYPE_MONSTER
;
filter
<=
TYPE_LINK
;
filter
<<=
1
,
++
i
)
{
if
(
type
&
filter
)
{
buffer
.
append
(
GetSysString
(
i
));
buffer
.
push_back
(
L'|'
);
}
}
if
(
p
!=
tpBuffer
)
*
(
p
-
1
)
=
0
;
else
return
unknown_string
;
return
tpBuffer
;
if
(
buffer
.
empty
())
return
std
::
wstring
(
unknown_string
);
buffer
.
pop_back
();
return
buffer
;
}
const
wchar_t
*
DataManager
::
FormatSetName
(
const
uint16_t
setcode
[])
{
wchar_t
*
p
=
scBuffer
;
...
...
gframe/data_manager.h
View file @
18123aca
...
...
@@ -35,7 +35,7 @@ public:
const
wchar_t
*
FormatLocation
(
int
location
,
int
sequence
)
const
;
std
::
wstring
FormatAttribute
(
unsigned
int
attribute
)
const
;
std
::
wstring
FormatRace
(
unsigned
int
race
)
const
;
const
wchar_t
*
FormatType
(
int
type
)
;
std
::
wstring
FormatType
(
unsigned
int
type
)
const
;
const
wchar_t
*
FormatSetName
(
const
uint16_t
setcode
[]);
const
wchar_t
*
FormatLinkMarker
(
int
link_marker
);
...
...
@@ -50,7 +50,6 @@ public:
wchar_t
numStrings
[
301
][
4
]{};
wchar_t
numBuffer
[
6
]{};
wchar_t
tpBuffer
[
128
]{};
wchar_t
scBuffer
[
128
]{};
wchar_t
lmBuffer
[
32
]{};
...
...
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