2005-02-05 12:14:56 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Copyright (C) 2005 Eliot
|
|
|
|
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-23 16:53:42 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-02-05 12:14:56 +01:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "cross.h"
|
|
|
|
|
|
|
|
|
|
|
|
Cross::Cross()
|
|
|
|
{
|
2006-01-22 13:23:52 +01:00
|
|
|
// The default behaviour is to match everything
|
2005-02-05 12:14:56 +01:00
|
|
|
m_any = true;
|
2006-01-22 13:23:52 +01:00
|
|
|
m_mask = 0xFFFFFFFF;
|
2005-02-05 12:14:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Cross::clear()
|
|
|
|
{
|
|
|
|
m_any = false;
|
2006-01-22 13:23:52 +01:00
|
|
|
m_mask = 0;
|
2005-02-05 12:14:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Cross::check(const Tile& iTile) const
|
|
|
|
{
|
2006-01-22 13:23:52 +01:00
|
|
|
if (m_any || (iTile.isJoker() && m_mask != 0))
|
2005-02-05 12:14:56 +01:00
|
|
|
return true;
|
2006-01-22 13:23:52 +01:00
|
|
|
return m_mask & (1 << iTile.toCode());
|
2005-02-05 12:14:56 +01:00
|
|
|
}
|
2005-04-02 19:59:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
bool Cross::operator==(const Cross &iOther) const
|
|
|
|
{
|
2006-01-22 13:23:52 +01:00
|
|
|
if (isAny() || iOther.isAny())
|
|
|
|
return isAny() && iOther.isAny();
|
|
|
|
|
|
|
|
return m_mask == iOther.m_mask;
|
2005-04-02 19:59:07 +02:00
|
|
|
}
|
2006-01-01 20:49:35 +01:00
|
|
|
|
|
|
|
/// Local Variables:
|
|
|
|
/// mode: c++
|
|
|
|
/// mode: hs-minor
|
|
|
|
/// c-basic-offset: 4
|
|
|
|
/// indent-tabs-mode: nil
|
|
|
|
/// End:
|