push 98438d20051787465e7a05f4aa66ab452afb1c14
[tagua/yd.git] / src / variants / chess / icsverbose.h
blob89dbd72dc3955278ed152a7194082677fc6ad1dc
1 /*
2 Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
3 (c) 2007 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 */
11 #ifndef CHESS__ICSVERBOSE_H
12 #define CHESS__ICSVERBOSE_H
14 #include "san.h"
16 class TAGUA_EXPORT ICSVerbose {
17 static QRegExp pattern;
18 static QRegExp kingCastlingPattern;
19 static QRegExp queenCastlingPattern;
20 static QRegExp nonePattern;
22 public:
23 ICSVerbose();
24 void load(const QString&, int ysize);
26 Point src, dst;
27 const IType* type;
28 const IType* promotion;
29 SAN::CastlingType castling;
31 inline bool invalid() const { return (src == Point::invalid() && dst == Point::invalid()); }
32 inline bool valid() const { return !invalid(); }
36 #endif // CHESS__ICSVERBOSE_H