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
53398f28
Commit
53398f28
authored
Nov 11, 2018
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
first taste of attack
parent
b2050168
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
0 deletions
+31
-0
gframe/client_field.cpp
gframe/client_field.cpp
+14
-0
gframe/drawing.cpp
gframe/drawing.cpp
+12
-0
gframe/duelclient.cpp
gframe/duelclient.cpp
+2
-0
gframe/game.h
gframe/game.h
+3
-0
No files found.
gframe/client_field.cpp
View file @
53398f28
...
...
@@ -1549,6 +1549,7 @@ void ClientField::RefreshCardCountDisplay() {
ClientCard
*
pcard
;
for
(
int
p
=
0
;
p
<
2
;
++
p
)
{
mainGame
->
dInfo
.
card_count
[
p
]
=
hand
[
p
].
size
();
mainGame
->
dInfo
.
total_attack
[
p
]
=
0
;
for
(
auto
it
=
mzone
[
p
].
begin
();
it
!=
mzone
[
p
].
end
();
++
it
)
{
pcard
=
*
it
;
if
(
pcard
)
{
...
...
@@ -1556,6 +1557,8 @@ void ClientField::RefreshCardCountDisplay() {
mainGame
->
dInfo
.
card_count
[
p
]
+=
pcard
->
link
;
else
mainGame
->
dInfo
.
card_count
[
p
]
++
;
if
(
pcard
->
position
==
POS_FACEUP_ATTACK
&&
pcard
->
attack
>
0
&&
(
p
==
1
||
mainGame
->
dInfo
.
curMsg
!=
MSG_SELECT_BATTLECMD
||
pcard
->
cmdFlag
&
COMMAND_ATTACK
))
mainGame
->
dInfo
.
total_attack
[
p
]
+=
pcard
->
attack
;
}
}
for
(
auto
it
=
szone
[
p
].
begin
();
it
!=
szone
[
p
].
end
();
++
it
)
{
...
...
@@ -1564,6 +1567,7 @@ void ClientField::RefreshCardCountDisplay() {
mainGame
->
dInfo
.
card_count
[
p
]
++
;
}
myswprintf
(
mainGame
->
dInfo
.
str_card_count
[
p
],
L"%d"
,
mainGame
->
dInfo
.
card_count
[
p
]);
myswprintf
(
mainGame
->
dInfo
.
str_total_attack
[
p
],
L"%d"
,
mainGame
->
dInfo
.
total_attack
[
p
]);
}
if
(
mainGame
->
dInfo
.
card_count
[
0
]
>
mainGame
->
dInfo
.
card_count
[
1
])
{
mainGame
->
dInfo
.
card_count_color
[
0
]
=
0xffffff00
;
...
...
@@ -1575,5 +1579,15 @@ void ClientField::RefreshCardCountDisplay() {
mainGame
->
dInfo
.
card_count_color
[
0
]
=
0xffffffff
;
mainGame
->
dInfo
.
card_count_color
[
1
]
=
0xffffffff
;
}
if
(
mainGame
->
dInfo
.
total_attack
[
0
]
>
mainGame
->
dInfo
.
total_attack
[
1
])
{
mainGame
->
dInfo
.
total_attack_color
[
0
]
=
0xffffff00
;
mainGame
->
dInfo
.
total_attack_color
[
1
]
=
0xffff0000
;
}
else
if
(
mainGame
->
dInfo
.
total_attack
[
1
]
>
mainGame
->
dInfo
.
total_attack
[
0
])
{
mainGame
->
dInfo
.
total_attack_color
[
1
]
=
0xffffff00
;
mainGame
->
dInfo
.
total_attack_color
[
0
]
=
0xffff0000
;
}
else
{
mainGame
->
dInfo
.
total_attack_color
[
0
]
=
0xffffffff
;
mainGame
->
dInfo
.
total_attack_color
[
1
]
=
0xffffffff
;
}
}
}
gframe/drawing.cpp
View file @
53398f28
...
...
@@ -567,6 +567,12 @@ void Game::DrawMisc() {
DrawShadowText
(
numFont
,
dInfo
.
str_card_count
[
0
],
Resize
(
550
,
31
,
575
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
card_count_color
[
0
],
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
str_card_count
[
1
],
Resize
(
757
,
31
,
782
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
card_count_color
[
1
],
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
str_total_attack
[
0
],
Resize
(
486
,
31
,
536
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
total_attack_color
[
0
],
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
str_total_attack
[
1
],
Resize
(
793
,
31
,
843
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
total_attack_color
[
1
],
0xff000000
,
true
,
false
,
0
);
driver
->
draw2DImage
(
imageManager
.
tAttack
,
ResizeCardMid
(
477
,
32
,
486
,
50
,
486
,
41
),
recti
(
32
,
0
,
96
,
128
),
0
,
0
,
true
);
driver
->
draw2DImage
(
imageManager
.
tAttack
,
ResizeCardMid
(
784
,
32
,
793
,
50
,
793
,
41
),
recti
(
32
,
0
,
96
,
128
),
0
,
0
,
true
);
/*
driver->draw2DRectangle(Resize(525, 34, 525 + dInfo.time_left[0] * 100 / dInfo.time_limit, 44), 0xa0e0e0e0, 0xa0e0e0e0, 0xa0c0c0c0, 0xa0c0c0c0);
driver->draw2DRectangleOutline(Resize(525, 34, 625, 44), 0xffffffff);
...
...
@@ -580,6 +586,12 @@ void Game::DrawMisc() {
DrawShadowText
(
numFont
,
dInfo
.
str_card_count
[
0
],
Resize
(
600
,
31
,
625
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
card_count_color
[
0
],
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
str_card_count
[
1
],
Resize
(
707
,
31
,
732
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
card_count_color
[
1
],
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
str_total_attack
[
0
],
Resize
(
536
,
31
,
586
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
total_attack_color
[
0
],
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
str_total_attack
[
1
],
Resize
(
743
,
31
,
793
,
50
),
Resize
(
0
,
1
,
2
,
0
),
dInfo
.
total_attack_color
[
1
],
0xff000000
,
true
,
false
,
0
);
driver
->
draw2DImage
(
imageManager
.
tAttack
,
ResizeCardMid
(
527
,
32
,
536
,
50
,
536
,
41
),
recti
(
32
,
0
,
96
,
128
),
0
,
0
,
true
);
driver
->
draw2DImage
(
imageManager
.
tAttack
,
ResizeCardMid
(
734
,
32
,
743
,
50
,
743
,
41
),
recti
(
32
,
0
,
96
,
128
),
0
,
0
,
true
);
}
DrawShadowText
(
numFont
,
dInfo
.
strLP
[
0
],
Resize
(
330
,
12
,
631
,
30
),
Resize
(
0
,
1
,
2
,
0
),
0xffffff00
,
0xff000000
,
true
,
false
,
0
);
DrawShadowText
(
numFont
,
dInfo
.
strLP
[
1
],
Resize
(
691
,
12
,
992
,
30
),
Resize
(
0
,
1
,
2
,
0
),
0xffffff00
,
0xff000000
,
true
,
false
,
0
);
...
...
gframe/duelclient.cpp
View file @
53398f28
...
...
@@ -1234,6 +1234,7 @@ int DuelClient::ClientAnalyze(char * msg, unsigned int len) {
mainGame
->
dField
.
attackable_cards
.
push_back
(
pcard
);
pcard
->
cmdFlag
|=
COMMAND_ATTACK
;
}
mainGame
->
dField
.
RefreshCardCountDisplay
();
mainGame
->
gMutex
.
Lock
();
if
(
BufferIO
::
ReadInt8
(
pbuf
))
{
mainGame
->
btnM2
->
setVisible
(
true
);
...
...
@@ -2405,6 +2406,7 @@ int DuelClient::ClientAnalyze(char * msg, unsigned int len) {
mainGame
->
btnShuffle
->
setVisible
(
false
);
mainGame
->
showcarddif
=
30
;
mainGame
->
showcardp
=
0
;
mainGame
->
dField
.
RefreshCardCountDisplay
();
switch
(
phase
)
{
case
PHASE_DRAW
:
mainGame
->
btnPhaseStatus
->
setText
(
L"
\xff24\xff30
"
);
...
...
gframe/game.h
View file @
53398f28
...
...
@@ -74,6 +74,7 @@ struct DuelInfo {
int
lp
[
2
];
int
start_lp
[
2
];
int
card_count
[
2
];
int
total_attack
[
2
];
int
duel_rule
;
int
turn
;
short
curMsg
;
...
...
@@ -90,7 +91,9 @@ struct DuelInfo {
wchar_t
str_time_left
[
2
][
16
];
video
::
SColor
time_color
[
2
];
wchar_t
str_card_count
[
2
][
16
];
wchar_t
str_total_attack
[
2
][
16
];
video
::
SColor
card_count_color
[
2
];
video
::
SColor
total_attack_color
[
2
];
bool
isReplaySwapped
;
std
::
vector
<
unsigned
int
>
announce_cache
;
};
...
...
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