Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

hash.h

00001 /*
00002  *   EasySok --- A(nother) sokoban game for KDE.
00003  *
00004  *   Copyright (C) 2001 by Ralf Schmelter (ralfs@pc2a.chemie.uni-dortmund.de).
00005  *
00006  *   This program is free software; you can redistribute it and/or modify
00007  *   it under the terms of the GNU General Public License version 2 as
00008  *   published by the Free Software Foundation.
00009  *
00010  *   This program is distributed in the hope that it will be useful,
00011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  *   GNU General Public License for more details.
00014  *
00015  *   You should have received a copy of the GNU General Public License
00016  *   along with this program; if not, write to the Free Software
00017  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00018  */
00019 
00020 
00021 #ifndef EASYSOK_HASH_INC_GUARD_H
00022 #define EASYSOK_HASH_INC_GUARD_H
00023 
00024 
00025 #include <vector>
00026 
00027 #include <qglobal.h>
00028 
00029 
00030 class Map;
00031 
00032 
00033 
00034 
00046 class Hash
00047 {
00048 
00049 public:
00050 
00057     Hash(Map const & map);
00058 
00059 
00070     Hash(Map const & map, std::vector<int> const & positions);
00071 
00072 
00079     Hash(Hash const & other_hash);
00080 
00081 
00086     ~Hash();
00087 
00088 
00095     Hash & operator = (Hash const & other_hash);
00096 
00097 
00104     bool operator == (Hash const & other_hash) const;
00105 
00106 
00113     bool operator != (Hash const & other_hash) const;
00114 
00115 
00122     bool operator < (Hash const & other_hash) const;
00123 
00124 
00125 private:
00126 
00134     void calcHash(Map const & map, std::vector<int> const & positions);
00135 
00136 
00141     bool onHeap() const;
00142 
00143 
00148     Q_UINT32 m_data0;
00149 
00150 
00155     union
00156     {
00157         struct OnStack
00158         {
00159             Q_UINT32 m_data1;
00160             Q_UINT32 m_data2;
00161         } on_stack;
00162 
00163         struct
00164         {
00165             Q_UINT32 m_size;
00166             Q_UINT32 * m_data;
00167         } on_heap;
00168     } rest;
00169 
00170 };
00171 
00172 
00173 
00174 #endif

Generated at Sun Jan 6 18:49:09 2002 for EasySok by doxygen1.2.9.1 written by Dimitri van Heesch, © 1997-2001