nguyenpham / ocgdb

Open Chess Game Database Standard (OCGDB)
MIT License
31 stars 8 forks source link

strange example #35

Closed Jonathan003 closed 2 years ago

Jonathan003 commented 2 years ago

You give this as example ocgdb -create -pgn big1.png -pgn big2.png -db :memory: -elo 2100 -o moves,moves1,discardsites -o moves,moves1

Is this a typo, or douse it makes sense to list the options moves,moves1 ?

nguyenpham commented 2 years ago

It is correct and the example is in purpose. The database can have zero, one, or two columns for moves. In the case of having two columns, the first one must be Moves for moves in text format (human-readable), the other column could be either Moves1 or Moves2 for moves in binary formats.

Jonathan003 commented 2 years ago

Thanks for the explanation.