Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Chess
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bolla Péter
Chess
Commits
ac894ab6
Commit
ac894ab6
authored
2 months ago
by
Bolla Péter
Browse files
Options
Downloads
Patches
Plain Diff
Rook movements in void Chess::Move(int oi, int ti) function
parent
8d39a339
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
chess.cpp
+96
-1
96 additions, 1 deletion
chess.cpp
with
96 additions
and
1 deletion
chess.cpp
+
96
−
1
View file @
ac894ab6
...
...
@@ -186,8 +186,102 @@ void Chess::Move(int oi, int ti)
{
for
(
int
d
=
1
;
d
<
abs
(
dc
)
-
1
&&
allempty
;
d
++
)
{
if
(
Table
[
oi
+
d
].
occupied
)
allempty
=
false
;
}
if
(
allempty
)
{
if
(
!
Table
[
ti
].
occupied
)
{
//Move
}
else
if
(
CanCapture
(
oi
,
ti
))
{
//Capture
}
else
{
//Don't move
}
}
else
{
//Don't move
}
}
else
if
(
dc
>
0
)
//Move to the left
{
for
(
int
d
=
1
;
d
<
abs
(
dc
)
-
1
&&
allempty
;
d
++
)
{
if
(
Table
[
oi
-
d
].
occupied
)
allempty
=
false
;
}
if
(
allempty
)
{
if
(
!
Table
[
ti
].
occupied
)
{
//Move
}
else
if
(
CanCapture
(
oi
,
ti
))
{
//Capture
}
else
{
//Don't move
}
}
else
{
//Don't move
}
}
else
if
(
dc
==
0
)
{
if
(
dr
<
0
)
//Move up
{
for
(
int
d
=
1
;
d
<
abs
(
dc
)
-
1
&&
allempty
;
d
++
)
{
if
(
Table
[
oi
+
d
*
8
].
occupied
)
allempty
=
false
;
}
if
(
allempty
)
{
if
(
!
Table
[
ti
].
occupied
)
{
//Move
}
else
if
(
CanCapture
(
oi
,
ti
))
{
//Capture
}
else
{
//Don't move
}
}
else
{
//Don't move
}
}
else
if
(
dr
>
0
)
//Move down
{
for
(
int
d
=
1
;
d
<
abs
(
dc
)
-
1
&&
allempty
;
d
++
)
{
if
(
Table
[
oi
-
8
*
d
].
occupied
)
allempty
=
false
;
}
if
(
allempty
)
{
if
(
!
Table
[
ti
].
occupied
)
{
//Move
}
else
if
(
CanCapture
(
oi
,
ti
))
{
//Capture
}
else
{
//Don't move
}
}
else
{
//Don't move
}
}
else
{
//Don't move
}
}
break
;
...
...
@@ -305,6 +399,7 @@ void Chess::Move(int oi, int ti)
//Don't move
}
}
break
;
}
else
{
//Don't move
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment