You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All package, class, method and variable names have been refactored. I have ran the game, and tried the following to see if they work
all piece movement
capture
en passant
check
castling
leaderboard
forfeit
draw
Naming conventions used (in accordance with Java conventions)
package names are all lowercase, multiple words becomes concatenated. i.e Frameworks_and_Drivers -> frameworksanddrivers
Class names start with uppercase and continue in camelCase. i.e. LocationBitboard
method and variable names start lowercase and continue in camelCase. i.e. whitePawnAttacks() and whitePawnAttacks
constants are all uppercase separated by underscores. I have verified the use of underscore for constants with the java conventions. i.e. WHITE_PAWN
The tests currently don't run because they can't import the packages for some reason. I'm having trouble fixing this, if anyone has some time, please take a look.
Please pull and run the branch before merging to ensure none of the original functionality has been compromised.
The text was updated successfully, but these errors were encountered:
All package, class, method and variable names have been refactored. I have ran the game, and tried the following to see if they work
Naming conventions used (in accordance with Java conventions)
The tests currently don't run because they can't import the packages for some reason. I'm having trouble fixing this, if anyone has some time, please take a look.
Please pull and run the branch before merging to ensure none of the original functionality has been compromised.
The text was updated successfully, but these errors were encountered: