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
610ebe07
Commit
610ebe07
authored
Oct 30, 2020
by
Radia EL HAMDOUNI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete fen.c
parent
45d94770
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
49 deletions
+0
-49
fen.c
fen.c
+0
-49
No files found.
fen.c
deleted
100644 → 0
View file @
45d94770
#include<stdio.h>
int
side
;
void
fen
(
char
*
my_fen
){
// first reset the board
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
;
// first part of fen
if
(
!
(
square
&
0x88
)){
if
((
*
my_fen
>=
'a'
&&
*
my_fen
<=
'z'
)
||
(
*
my_fen
>=
'A'
&&
*
my_fen
<=
'Z'
)
){
board
[
square
]
=
char_pieces
[
*
my_fen
];
*
my_fen
++
;
}
if
(
*
my_fen
>=
'0'
&&
*
my_fen
<=
'8'
){
j
+=
*
my_fen
-
'0'
;
*
my_fen
++
;
}
if
(
*
my_fen
==
'/'
){
*
my_fen
++
;
}
}
}
}
*
my_fen
++
;
// second part of FEN
if
(
*
my_fen
==
'w'
){
side
=
white
;
}
else
{
side
=
black
;
}
show_board
();
// castling
// en passant
}
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