eliot/game/coord.h

81 lines
2.6 KiB
C
Raw Normal View History

2005-08-15 20:14:52 +02:00
/* Eliot */
/* Copyright (C) 1999 Antoine Fraboulet */
/* */
/* This file is part of Eliot. */
/* */
/* Eliot 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. */
/* */
/* Eliot 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
/**
* \file coord.h
2006-01-01 20:49:35 +01:00
* \brief Board coordinates system
2005-08-15 20:14:52 +02:00
* \author Antoine Fraboulet
* \date 2005
*/
#ifndef _COORD_H
#define _COORD_H
using std::string;
using std::wstring;
2005-08-15 20:14:52 +02:00
class Coord
{
2005-11-04 21:00:05 +01:00
public:
enum Direction {VERTICAL, HORIZONTAL};
2005-08-15 20:14:52 +02:00
// Construction, destruction
Coord(int iRow = -1, int iCol = -1, Direction iDir = HORIZONTAL);
Coord(const wstring &iStr);
virtual ~Coord() {}
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;
2005-08-15 20:14:52 +02:00
void operator=(const Coord &iOther);
// Swap the coordinates (without changing the direction)
void swap();
2006-01-01 20:49:35 +01:00
enum coord_mode_t
{
COORD_MODE_COMPACT,
COORD_MODE_LONG
};
void setFromString(const wstring &iStr);
wstring toString(coord_mode_t mode = COORD_MODE_COMPACT) 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
/// Local Variables:
2006-01-01 20:49:35 +01:00
/// mode: c++
2005-08-15 20:14:52 +02:00
/// mode: hs-minor
/// c-basic-offset: 4
2006-01-01 20:49:35 +01:00
/// indent-tabs-mode: nil
2005-08-15 20:14:52 +02:00
/// End: