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