Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
chess_programming
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Radia EL HAMDOUNI
chess_programming
Commits
9bc1b065
Commit
9bc1b065
authored
Oct 30, 2020
by
Radia EL HAMDOUNI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add board handling file
parent
610ebe07
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
board.c
board.c
+32
-0
No files found.
board.c
0 → 100644
View file @
9bc1b065
// Print the board to the console
void
show_board
(){
for
(
int
square
=
0
;
square
<
128
;
square
++
)
{
if
(
!
(
square
%
16
))
printf
(
" %d "
,
8
-
(
square
/
16
));
printf
(
" %s"
,
((
square
&
8
)
&&
(
square
+=
7
))
?
"
\n
"
:
chess_pieces
[
board
[
square
]
&
15
]);
}
printf
(
"
\n
a b c d e f g h
\n\n\n
"
);
// print files
printf
(
"
\n
Enter a valid move :
\n
"
);
}
// reset the board => remove all the pieces
void
reset
(){
for
(
int
i
=
0
;
i
<
8
;
i
++
){
//loop over the ranks
for
(
int
j
=
0
;
j
<
16
;
j
++
){
// loop over the files
int
square
=
16
*
i
+
j
;
// print the board's valid quares
if
(
!
(
square
&
0x88
)){
board
[
square
]
=
e
;
}
}
}
}
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