File: nachbariterator.h

package info (click to toggle)
cuyo 2.0.0brl1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 15,624 kB
  • sloc: cpp: 11,728; ml: 5,515; sh: 1,179; makefile: 757; yacc: 558; awk: 355; lex: 244; perl: 193
file content (64 lines) | stat: -rw-r--r-- 1,881 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/***************************************************************************
                          nachbariterator.h  -  description
                             -------------------
    begin                : Thu Jul 26 2001
    copyright            : (C) 2001 by Immi
    email                : cuyo@karimmi.de

Modified 2001,2002,2005,2006,2011 by the cuyo developers

 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef NACHBARITERATOR_H
#define NACHBARITERATOR_H

/**Iteriert durch alle Nachbarn eines Punktes.
(Nachbarn im Sinne von Kette zhlt als verbunden.)
Verwendung:
  for (NachbarIterator i(x, y); i; ++i) {
    bla(i.mX, i.mY);
  }
  *@author Immi
  */

class Sorte;

class NachbarIterator {
public: 
  NachbarIterator(const Sorte * s, int x, int y);
  ~NachbarIterator();

  /** Nchster Nachbar */
  NachbarIterator & operator++();
  
  operator bool() {
    return !mEnde;
  }
  
protected:

  int mNachbarschaft;
  int mX0, mY0;
  int mI;
  bool mEnde;
  
  void setXY();
  
public:
  /** Zum auslesen: die (absoluten) Koord. vom Nachbarn */
  int mX, mY;
  /** Zum auslesen: die Nachbar-Richtung und die entgegengesetzte
      Richtung. Konstanten dazu stehen in sorte.h */
  int mDir, mDirOpp;
};

#endif