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
Create bPGN, a PGN library in a way that it can be used by bCS itself and others if they want to.
Unlike the current implementation (PGN.groovy) which is stateful (i.e DB) and tries to mimic a potential model layout of bCS, it should be stateless and only try to fairly represent a PGN structure.
For example:
classTag {
String key
String value
}
classPly {
String san
Ply next
Ply prev
List<Ply> variations
String commentBefore
String commentAfter
String nag
}
classGame {
List<Tag> tags
Integer startngMoveNumber
Ply first
}
The text was updated successfully, but these errors were encountered:
Create bPGN, a PGN library in a way that it can be used by bCS itself and others if they want to.
Unlike the current implementation (
PGN.groovy
) which is stateful (i.eDB
) and tries to mimic a potential model layout of bCS, it should be stateless and only try to fairly represent a PGN structure.For example:
The text was updated successfully, but these errors were encountered: