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
REIKAI
ygopro
Commits
491e111c
Commit
491e111c
authored
Oct 22, 2017
by
edo9300
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'refs/remotes/Fluorohydride/master'
parents
8bb6eca0
7a6ffff3
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
478 additions
and
129 deletions
+478
-129
gframe/duelclient.cpp
gframe/duelclient.cpp
+1
-0
gframe/game.cpp
gframe/game.cpp
+1
-1
gframe/gframe.cpp
gframe/gframe.cpp
+12
-0
lflist.conf
lflist.conf
+462
-127
strings.conf
strings.conf
+2
-1
No files found.
gframe/duelclient.cpp
View file @
491e111c
...
...
@@ -1729,6 +1729,7 @@ int DuelClient::ClientAnalyze(char * msg, unsigned int len) {
int
count
=
BufferIO
::
ReadInt8
(
pbuf
);
mainGame
->
dField
.
selectable_cards
.
clear
();
mainGame
->
dField
.
selected_cards
.
clear
();
mainGame
->
dField
.
select_panalmode
=
false
;
int
c
,
l
,
s
,
t
;
unsigned
int
code
;
ClientCard
*
pcard
;
...
...
gframe/game.cpp
View file @
491e111c
...
...
@@ -16,7 +16,7 @@
#include <dirent.h>
#endif
unsigned
short
PRO_VERSION
=
0x13
3D
;
unsigned
short
PRO_VERSION
=
0x13
40
;
namespace
ygo
{
...
...
gframe/gframe.cpp
View file @
491e111c
...
...
@@ -2,6 +2,9 @@
#include "game.h"
#include "data_manager.h"
#include <event2/thread.h>
#ifdef __APPLE__
#import <CoreFoundation/CoreFoundation.h>
#endif
int
enable_log
=
0
;
bool
exit_on_return
=
false
;
...
...
@@ -36,6 +39,15 @@ int main(int argc, char* argv[]) {
#ifndef _WIN32
setlocale
(
LC_CTYPE
,
"UTF-8"
);
#endif
#ifdef __APPLE__
CFURLRef
bundle_url
=
CFBundleCopyBundleURL
(
CFBundleGetMainBundle
());
CFURLRef
bundle_base_url
=
CFURLCreateCopyDeletingLastPathComponent
(
NULL
,
bundle_url
);
CFRelease
(
bundle_url
);
CFStringRef
path
=
CFURLCopyFileSystemPath
(
bundle_base_url
,
kCFURLPOSIXPathStyle
);
CFRelease
(
bundle_base_url
);
chdir
(
CFStringGetCStringPtr
(
path
,
kCFStringEncodingUTF8
));
CFRelease
(
path
);
#endif //__APPLE__
#ifdef _WIN32
#ifndef _DEBUG
wchar_t
exepath
[
MAX_PATH
];
...
...
lflist.conf
View file @
491e111c
This diff is collapsed.
Click to expand it.
strings.conf
View file @
491e111c
...
...
@@ -80,7 +80,7 @@
!
system
510
Select
a
card
to
flip
-
up
!
system
511
Select
a
card
to
use
as
Fusion
Material
!
system
512
Select
a
card
to
use
as
Synchro
Material
!
system
513
Select
a
card
to
be
Xyz
Material
!
system
513
Select
a
card
to
use
as
Xyz
Material
!
system
514
Select
a
card
on
opponent
'
s
side
!
system
515
Select
a
card
on
your
side
!
system
516
Select
a
monster
in
attack
position
...
...
@@ -100,6 +100,7 @@
!
system
530
Select
opponent
card
!
system
531
Select
the
highest
level
monsters
for
tribute
:
!
system
532
Select
a
monster
to
detach
Xyz
Material
!
system
533
Select
a
card
to
use
as
Link
Material
!
system
549
Select
an
attack
target
!
system
550
Select
an
effect
you
want
to
activate
!
system
551
Select
the
target
of
the
effect
...
...
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