/***************************************************************************** * Copyright (C) 1999-2005 Eliot * Authors: Antoine Fraboulet * Olivier Teuliere * * 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 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *****************************************************************************/ #include "rack.h" #include "pldrack.h" #include "debug.h" void PlayedRack::addOld(const Tile &t) { m_oldTiles.push_back(t); } void PlayedRack::addNew(const Tile &t) { m_newTiles.push_back(t); } void PlayedRack::getOldTiles(vector &oTiles) const { oTiles.clear(); for (int i = 0; i < nOld(); i++) oTiles.push_back(m_oldTiles[i]); } void PlayedRack::getNewTiles(vector &oTiles) const { oTiles.clear(); for (int i = 0; i < nNew(); i++) oTiles.push_back(m_newTiles[i]); } void PlayedRack::getAllTiles(vector &oTiles) const { oTiles.clear(); for (int i = 0; i < nOld(); i++) oTiles.push_back(m_oldTiles[i]); for (int j = 0; j < nNew(); j++) oTiles.push_back(m_newTiles[j]); } void PlayedRack::reset() { m_oldTiles.clear(); m_newTiles.clear(); } void PlayedRack::resetNew() { m_newTiles.clear(); } void PlayedRack::getOld(Rack &oRack) const { vector::const_iterator it; oRack.clear(); for (it = m_oldTiles.begin(); it != m_oldTiles.end(); it++) { oRack.add(*it); } } void PlayedRack::getNew(Rack &oRack) const { vector::const_iterator it; oRack.clear(); for (it = m_newTiles.begin(); it != m_newTiles.end(); it++) { oRack.add(*it); } } void PlayedRack::getRack(Rack &oRack) const { vector::const_iterator it; getOld(oRack); for (it = m_newTiles.begin(); it != m_newTiles.end(); it++) { oRack.add(*it); } } void PlayedRack::setOld(const Rack &iRack) { list l; iRack.getTiles(l); m_oldTiles.clear(); list::const_iterator it; for (it = l.begin(); it != l.end(); it++) { addOld(*it); } } void PlayedRack::setNew(const Rack &iRack) { list l; iRack.getTiles(l); m_newTiles.clear(); list::const_iterator it; for (it = l.begin(); it != l.end(); it++) { addNew(*it); } } bool PlayedRack::checkRack(int iMin) const { vector::const_iterator it; int v = 0; int c = 0; for (it = m_oldTiles.begin(); it != m_oldTiles.end(); it++) { if (it->isVowel()) v++; if (it->isConsonant()) c++; } for (it = m_newTiles.begin(); it != m_newTiles.end(); it++) { if (it->isVowel()) v++; if (it->isConsonant()) c++; } return (v >= iMin) && (c >= iMin); } void PlayedRack::operator=(const PlayedRack &iOther) { m_oldTiles = iOther.m_oldTiles; m_newTiles = iOther.m_newTiles; } string PlayedRack::toString(bool iShowExtraSigns) const { vector::const_iterator it; string s; for (it = m_oldTiles.begin(); it != m_oldTiles.end(); it++) s += it->toChar(); if (iShowExtraSigns && nOld() > 0 && nNew() > 0) s += "+"; for (it = m_newTiles.begin(); it != m_newTiles.end(); it++) s += it->toChar(); return s; }