eliot/game/coord.h

73 lines
2 KiB
C
Raw Permalink Normal View History

/*****************************************************************************
* Eliot
* Copyright (C) 2005-2012 Antoine Fraboulet & Olivier Teulière
* Authors: Antoine Fraboulet <antoine.fraboulet @@ free.fr>
* Olivier Teulière <ipkiss @@ gmail.com>
*
* 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
*****************************************************************************/
2005-08-15 20:14:52 +02:00
#ifndef COORD_H_
#define COORD_H_
2005-08-15 20:14:52 +02:00
#include <string>
2012-02-18 22:26:52 +01:00
#include "logging.h"
using std::wstring;
/**
* This class handles coordinates of a square on the board.
* The row and column start at 1.
*/
2005-08-15 20:14:52 +02:00
class Coord
{
2012-02-18 22:26:52 +01:00
DEFINE_LOGGER();
2005-11-04 21:00:05 +01:00
public:
enum Direction {VERTICAL, HORIZONTAL};
2005-08-15 20:14:52 +02:00
// Construction
Coord(int iRow = -1, int iCol = -1, Direction iDir = HORIZONTAL);
Coord(const wstring &iStr);
2005-11-04 21:00:05 +01:00
// Accessors
void setRow(int iRow) { m_row = iRow; }
void setCol(int iCol) { m_col = iCol; }
void setDir(Direction iDir) { m_dir = iDir; }
int getRow() const { return m_row; }
int getCol() const { return m_col; }
Direction getDir() const { return m_dir; }
2005-08-15 20:14:52 +02:00
bool isValid() const;
bool operator==(const Coord &iOther) const;
// Swap the coordinates (without changing the direction)
void swap();
2006-01-01 20:49:35 +01:00
void setFromString(const wstring &iStr);
2012-12-26 17:03:43 +01:00
wstring toString() const;
2005-08-15 20:14:52 +02:00
private:
2005-08-15 20:14:52 +02:00
Direction m_dir;
int m_row, m_col;
};
#endif