SAGA API  v9.8
pointcloud.h
Go to the documentation of this file.
1 
3 // //
4 // SAGA //
5 // //
6 // System for Automated Geoscientific Analyses //
7 // //
8 // Application Programming Interface //
9 // //
10 // Library: SAGA_API //
11 // //
12 //-------------------------------------------------------//
13 // //
14 // pointcloud.h //
15 // //
16 // Copyright (C) 2009 by Olaf Conrad //
17 // //
18 //-------------------------------------------------------//
19 // //
20 // This file is part of 'SAGA - System for Automated //
21 // Geoscientific Analyses'. //
22 // //
23 // This library is free software; you can redistribute //
24 // it and/or modify it under the terms of the GNU Lesser //
25 // General Public License as published by the Free //
26 // Software Foundation, either version 2.1 of the //
27 // License, or (at your option) any later version. //
28 // //
29 // This library is distributed in the hope that it will //
30 // be useful, but WITHOUT ANY WARRANTY; without even the //
31 // implied warranty of MERCHANTABILITY or FITNESS FOR A //
32 // PARTICULAR PURPOSE. See the GNU Lesser General Public //
33 // License for more details. //
34 // //
35 // You should have received a copy of the GNU Lesser //
36 // General Public License along with this program; if //
37 // not, see <http://www.gnu.org/licenses/>. //
38 // //
39 //-------------------------------------------------------//
40 // //
41 // contact: Olaf Conrad //
42 // Institute of Geography //
43 // University of Hamburg //
44 // Germany //
45 // //
46 // e-mail: oconrad@saga-gis.org //
47 // //
49 
50 //---------------------------------------------------------
51 #ifndef HEADER_INCLUDED__SAGA_API__pointcloud_H
52 #define HEADER_INCLUDED__SAGA_API__pointcloud_H
53 
54 
56 // //
57 // //
58 // //
60 
61 //---------------------------------------------------------
71 // //
73 // //
74 // //
76 
77 //---------------------------------------------------------
78 #include "shapes.h"
79 
80 
82 // //
83 // //
84 // //
86 
87 //---------------------------------------------------------
88 typedef enum
89 {
93 }
95 
96 
98 // //
99 // //
100 // //
102 
103 //---------------------------------------------------------
105 {
106 public:
107 
108  CSG_PointCloud (void);
109  bool Create (void);
110 
111  CSG_PointCloud (const CSG_PointCloud &PointCloud);
112  bool Create (const CSG_PointCloud &PointCloud);
113 
114  CSG_PointCloud (const CSG_String &File);
115  bool Create (const CSG_String &File);
116  CSG_PointCloud (const char *File);
117  bool Create (const char *File);
118  CSG_PointCloud (const wchar_t *File);
119  bool Create (const wchar_t *File);
120 
121  CSG_PointCloud (CSG_PointCloud *pTemplate);
122  bool Create (CSG_PointCloud *pTemplate);
123 
124  virtual ~CSG_PointCloud(void);
125 
126  virtual bool Destroy (void);
127 
129 
130  virtual bool Assign (CSG_Data_Object *pSource, bool bProgress = false);
131 
132  virtual bool Save (const CSG_String &File, int Format = 0);
133  virtual bool Save (const char *File, int Format = 0) { return( Save(CSG_String(File), Format) ); }
134  virtual bool Save (const wchar_t *File, int Format = 0) { return( Save(CSG_String(File), Format) ); }
135 
136  void Set_XYZ_Precision (bool bDouble) { m_bXYZPrecDbl = bDouble; }
137 
138  static bool Get_Header_Content (const CSG_String &FileName, CSG_MetaData &Header);
139 
140  //-----------------------------------------------------
141  virtual bool is_Valid (void) const { return( m_nFields > 0 ); }
142  bool is_Compatible (CSG_PointCloud *pPointCloud) const;
143 
144  //-----------------------------------------------------
145  virtual bool Add_Field (const CSG_String &Name, TSG_Data_Type Type, int Field = -1);
146  virtual bool Del_Field (int Field);
147  virtual bool Mov_Field (int Field, int Position);
148 
149  virtual int Get_Field_Length (int Field, int Encoding = SG_FILE_ENCODING_UNDEFINED) const;
150  virtual bool Set_Field_Type (int Field, TSG_Data_Type Type);
151 
152  //-----------------------------------------------------
153  int Get_Attribute_Count (void) const { return( m_nFields - 3 ); }
154  const SG_Char * Get_Attribute_Name (int Field) const { Field += 3; return( Field >= 3 && Field < m_nFields ? m_Field_Name[Field]->c_str() : NULL ); }
155  TSG_Data_Type Get_Attribute_Type (int Field) const { Field += 3; return( Field >= 3 && Field < m_nFields ? m_Field_Type[Field] : SG_DATATYPE_Undefined ); }
156  int Get_Attribute_Length(int Field, int Encoding = SG_FILE_ENCODING_UNDEFINED) const { return( Get_Field_Length(Field + 3) ); }
157 
158  //-----------------------------------------------------
159  bool Add_Point (double x, double y, double z);
160  bool Add_Point (const CSG_Point_3D &Point);
161  bool Del_Point (sLong Index);
162  bool Del_Points (void);
163 
164  //-----------------------------------------------------
165  bool Set_Cursor (sLong Index) { return( (m_Cursor = Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL) != NULL ); }
166  virtual bool Set_Value ( int Field, double Value) { return( _Set_Field_Value(m_Cursor, Field, Value) ); }
167  virtual double Get_Value ( int Field) const { return( _Get_Field_Value(m_Cursor, Field) ); }
168  double Get_X (void) const { return( _Get_Field_Value(m_Cursor, 0) ); }
169  double Get_Y (void) const { return( _Get_Field_Value(m_Cursor, 1) ); }
170  double Get_Z (void) const { return( _Get_Field_Value(m_Cursor, 2) ); }
171  bool Set_Attribute ( int Field, double Value) { return( Set_Value(Field + 3, Value) ); }
172  double Get_Attribute ( int Field) const { return( Get_Value(Field + 3) ); }
173  bool Set_NoData ( int Field) { return( Set_Value(Field, Get_NoData_Value()) ); }
174  bool is_NoData ( int Field) const { return( is_NoData_Value(Get_Value(Field)) ); }
175 
176  virtual bool Set_Value (sLong Index, int Field, double Value) { return( _Set_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, Field, Value) ); }
177  virtual double Get_Value (sLong Index, int Field) const { return( _Get_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, Field) ); }
178  double Get_X (sLong Index) const { return( _Get_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, 0) ); }
179  double Get_Y (sLong Index) const { return( _Get_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, 1) ); }
180  double Get_Z (sLong Index) const { return( _Get_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, 2) ); }
181  bool Set_Attribute (sLong Index, int Field, double Value) { return( Set_Value(Index, Field + 3, Value) ); }
182  double Get_Attribute (sLong Index, int Field) const { return( Get_Value(Index, Field + 3) ); }
183  bool Set_NoData (sLong Index, int Field) { return( Set_Value(Index, Field, Get_NoData_Value()) );}
184  bool is_NoData (sLong Index, int Field) const { return( is_NoData_Value(Get_Value(Index, Field)) ); }
185 
186  virtual bool Set_Value ( int Field, const SG_Char *Value) { return( _Set_Field_Value(m_Cursor, Field, Value) ); }
187  virtual bool Get_Value ( int Field, CSG_String &Value) const { return( _Get_Field_Value(m_Cursor, Field, Value) ); }
188  virtual bool Set_Value (sLong Index, int Field, const SG_Char *Value) { return( _Set_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, Field, Value) ); }
189  virtual bool Get_Value (sLong Index, int Field, CSG_String &Value) const { return( _Get_Field_Value(Index >= 0 && Index < m_nRecords ? m_Points[Index] : NULL, Field, Value) ); }
190  virtual bool Set_Attribute ( int Field, const SG_Char *Value) { return( Set_Value(Field + 3, Value) ); }
191  virtual bool Get_Attribute ( int Field, CSG_String &Value) const { return( Get_Value(Field + 3, Value) ); }
192  virtual bool Set_Attribute (sLong Index, int Field, const SG_Char *Value) { return( Set_Value(Index, Field + 3, Value) ); }
193  virtual bool Get_Attribute (sLong Index, int Field, CSG_String &Value) const { return( Get_Value(Index, Field + 3, Value) ); }
194 
195  sLong Get_Point (const CSG_Point &Point, double Epsilon = 0.);
196  TSG_Point_3D Get_Point (void) const;
197  TSG_Point_3D Get_Point (sLong Index) const;
198  virtual bool Set_Point ( const TSG_Point_3D &Point);
199  virtual bool Set_Point (sLong Index, const TSG_Point_3D &Point);
200 
201  virtual void Set_Modified (bool bModified = true) { CSG_Data_Object::Set_Modified(bModified); }
202 
203 
204  //-----------------------------------------------------
205  // Overrides: CSG_Table, CSG_Shapes
206 
207  virtual CSG_Table_Record * Get_Record (sLong Index) const;
208 
209  virtual CSG_Shape * Get_Shape (const CSG_Point &Point, double Epsilon = 0.);
210 
211  virtual bool Del_Record (sLong Index) { return( Del_Point(Index) ); }
212  virtual bool Del_Shape (sLong Index) { return( Del_Point(Index) ); }
213  virtual bool Del_Records (void) { return( Del_Points() ); }
214  virtual bool Del_Shapes (void) { return( Del_Points() ); }
215 
216  virtual CSG_Table_Record * Ins_Record (sLong Index, CSG_Table_Record *pCopy = NULL);
217  virtual CSG_Table_Record * Add_Record ( CSG_Table_Record *pCopy = NULL);
218  virtual CSG_Shape * Add_Shape ( CSG_Table_Record *pCopy = NULL, TSG_ADD_Shape_Copy_Mode mCopy = SHAPE_COPY);
219  virtual bool Del_Shape (CSG_Shape *pShape) { return( false ); }
220 
221  virtual bool Select (sLong Index , bool bInvert = false);
222  virtual bool Select (CSG_Table_Record *pShape = NULL, bool bInvert = false);
223  virtual bool Select (const TSG_Rect &Extent , bool bInvert = false);
224  virtual bool Select (const TSG_Point &Point , bool bInvert = false);
225 
226  virtual bool is_Selected (sLong Index) const;
227 
228  virtual sLong Del_Selection (void);
229  virtual sLong Inv_Selection (void);
230  virtual CSG_Shape * Get_Selection (sLong Index = 0);
231  virtual const CSG_Rect & Get_Selection_Extent(void);
232 
233  virtual bool Sort (const CSG_Index &Index);
234 
235 
236 protected:
237 
238  virtual bool On_Update (void);
239  virtual bool On_Reload (void);
240  virtual bool On_Delete (void);
241 
242  virtual void _On_Construction (void);
243 
244  virtual bool _Stats_Update (int Field) const;
245 
246 
247 private:
248 
249  bool m_bXYZPrecDbl;
250 
251  char **m_Points, *m_Cursor;
252 
253  int m_nPointBytes, *m_Field_Offset;
254 
255  CSG_Array m_Array_Points;
256 
257  CSG_Shapes m_Shapes;
258 
259 
260  bool _Load (const CSG_String &File);
261  bool _Load (CSG_File &Stream);
262  bool _Save (CSG_File &Stream);
263  CSG_MetaData _Create_Header (void) const;
264 
265  bool _Add_Field (const SG_Char *Name, TSG_Data_Type Type, int Field = -1);
266  bool _Set_Field_Value (char *pPoint, int Field, double Value);
267  double _Get_Field_Value (char *pPoint, int Field ) const;
268  bool _Set_Field_Value (char *pPoint, int Field, const SG_Char *Value);
269  bool _Get_Field_Value (char *pPoint, int Field, CSG_String &Value) const;
270 
271  bool _Inc_Array (void);
272  bool _Dec_Array (void);
273 
274  CSG_Shape * _Shape_Get (sLong Index);
275  void _Shape_Flush (void);
276 
277 };
278 
279 
281 // //
282 // //
283 // //
285 
286 //---------------------------------------------------------
289 
292 
299 
302 
304 // //
305 // //
306 // //
308 
309 //---------------------------------------------------------
310 #endif // #ifndef HEADER_INCLUDED__SAGA_API__pointcloud_H
CSG_Index
Definition: mat_tools.h:200
CSG_Rect
Definition: geo_tools.h:474
CSG_PointCloud::Get_X
double Get_X(sLong Index) const
Definition: pointcloud.h:178
CSG_PointCloud::Get_Y
double Get_Y(void) const
Definition: pointcloud.h:169
CSG_PointCloud::Get_X
double Get_X(void) const
Definition: pointcloud.h:168
CSG_Shapes::On_Delete
virtual bool On_Delete(void)
Definition: shapes_io.cpp:72
SG_DATATYPE_Undefined
@ SG_DATATYPE_Undefined
Definition: api_core.h:1011
CSG_PointCloud::Set_Value
virtual bool Set_Value(sLong Index, int Field, double Value)
Definition: pointcloud.h:176
TSG_PointCloud_File_Type
TSG_PointCloud_File_Type
Definition: pointcloud.h:89
CSG_PointCloud::Del_Shapes
virtual bool Del_Shapes(void)
Definition: pointcloud.h:214
CSG_PointCloud::Set_Attribute
bool Set_Attribute(sLong Index, int Field, double Value)
Definition: pointcloud.h:181
POINTCLOUD_FILE_FORMAT_Normal
@ POINTCLOUD_FILE_FORMAT_Normal
Definition: pointcloud.h:91
CSG_Table::Get_Value
virtual bool Get_Value(sLong Index, int Field, CSG_String &Value) const
Definition: table.cpp:1181
CSG_PointCloud::Get_Z
double Get_Z(sLong Index) const
Definition: pointcloud.h:180
CSG_Shapes::Get_Shape
virtual CSG_Shape * Get_Shape(const CSG_Point &Point, double Epsilon=0.)
Definition: shapes.cpp:483
CSG_Shapes::Get_Selection
virtual CSG_Shape * Get_Selection(sLong Index=0)
Definition: shapes.h:833
CSG_Shapes::On_Reload
virtual bool On_Reload(void)
Definition: shapes_io.cpp:66
CSG_Table_Record
Definition: table.h:130
CSG_Data_Object::Get_NoData_Value
double Get_NoData_Value(bool bUpper=false) const
Definition: dataobject.h:253
CSG_PointCloud::Del_Shape
virtual bool Del_Shape(CSG_Shape *pShape)
Definition: pointcloud.h:219
CSG_Table::Inv_Selection
virtual sLong Inv_Selection(void)
Definition: table_selection.cpp:203
TSG_ADD_Shape_Copy_Mode
TSG_ADD_Shape_Copy_Mode
Definition: shapes.h:124
SG_Create_PointCloud
SAGA_API_DLL_EXPORT CSG_PointCloud * SG_Create_PointCloud(void)
Definition: pointcloud.cpp:76
CSG_PointCloud::Get_Attribute_Type
TSG_Data_Type Get_Attribute_Type(int Field) const
Definition: pointcloud.h:155
CSG_PointCloud::Get_Attribute
double Get_Attribute(int Field) const
Definition: pointcloud.h:172
CSG_Table::Set_Field_Type
virtual bool Set_Field_Type(int Field, TSG_Data_Type Type)
Definition: table.cpp:610
CSG_Table::is_Selected
virtual bool is_Selected(sLong Index) const
Definition: table.h:429
CSG_Table::Get_Record
virtual CSG_Table_Record * Get_Record(sLong Index) const
Definition: table.h:399
CSG_PointCloud::Get_Value
virtual double Get_Value(sLong Index, int Field) const
Definition: pointcloud.h:177
CSG_PointCloud::Set_XYZ_Precision
void Set_XYZ_Precision(bool bDouble)
Definition: pointcloud.h:136
CSG_Table::_Stats_Update
virtual bool _Stats_Update(int Field) const
Definition: table.cpp:1248
SSG_Point_3D
Definition: geo_tools.h:265
CSG_PointCloud::Set_Value
virtual bool Set_Value(int Field, const SG_Char *Value)
Definition: pointcloud.h:186
CSG_Data_Object::is_NoData_Value
bool is_NoData_Value(double Value) const
Definition: dataobject.h:255
CSG_PointCloud::Get_Value
virtual bool Get_Value(sLong Index, int Field, CSG_String &Value) const
Definition: pointcloud.h:189
CSG_Shapes::_On_Construction
virtual void _On_Construction(void)
Definition: shapes.cpp:193
SHAPE_COPY
@ SHAPE_COPY
Definition: shapes.h:128
CSG_PointCloud::Get_Value
virtual bool Get_Value(int Field, CSG_String &Value) const
Definition: pointcloud.h:187
SSG_Point
Definition: geo_tools.h:128
CSG_File
Definition: api_core.h:1127
CSG_PointCloud::Get_Attribute_Count
int Get_Attribute_Count(void) const
Definition: pointcloud.h:153
CSG_PointCloud::Set_Attribute
virtual bool Set_Attribute(int Field, const SG_Char *Value)
Definition: pointcloud.h:190
SSG_Rect
Definition: geo_tools.h:467
CSG_PointCloud::Set_Value
virtual bool Set_Value(int Field, double Value)
Definition: pointcloud.h:166
CSG_Shapes::Add_Shape
virtual CSG_Shape * Add_Shape(CSG_Table_Record *pCopy=NULL, TSG_ADD_Shape_Copy_Mode mCopy=SHAPE_COPY)
Definition: shapes.cpp:402
CSG_Table::is_Compatible
bool is_Compatible(const CSG_Table &Table, bool bExactMatch=false) const
Definition: table.cpp:430
CSG_PointCloud::Get_Attribute_Length
int Get_Attribute_Length(int Field, int Encoding=SG_FILE_ENCODING_UNDEFINED) const
Definition: pointcloud.h:156
CSG_Data_Object
Definition: dataobject.h:180
CSG_Point
Definition: geo_tools.h:135
CSG_Shapes::Get_Selection_Extent
virtual const CSG_Rect & Get_Selection_Extent(void)
Definition: shapes_selection.cpp:118
SG_FILE_ENCODING_UNDEFINED
@ SG_FILE_ENCODING_UNDEFINED
Definition: api_core.h:557
CSG_PointCloud::Get_Attribute
virtual bool Get_Attribute(int Field, CSG_String &Value) const
Definition: pointcloud.h:191
CSG_Shapes::Save
virtual bool Save(const CSG_String &File, int Format=0)
Definition: shapes_io.cpp:141
CSG_PointCloud::Get_Value
virtual double Get_Value(int Field) const
Definition: pointcloud.h:167
CSG_Point_3D
Definition: geo_tools.h:272
CSG_PointCloud::Get_ObjectType
virtual TSG_Data_Object_Type Get_ObjectType(void) const
Returns the object type as defined by TSG_Data_Object_Type. Used for run time type checking.
Definition: pointcloud.h:128
sLong
signed long long sLong
Definition: api_core.h:158
CSG_Table::Get_Field_Length
virtual int Get_Field_Length(int Field, int Encoding=SG_FILE_ENCODING_UNDEFINED) const
Definition: table.cpp:670
CSG_PointCloud::Get_Z
double Get_Z(void) const
Definition: pointcloud.h:170
CSG_PointCloud::Get_Attribute
double Get_Attribute(sLong Index, int Field) const
Definition: pointcloud.h:182
CSG_PointCloud::Save
virtual bool Save(const char *File, int Format=0)
Definition: pointcloud.h:133
CSG_PointCloud::Save
virtual bool Save(const wchar_t *File, int Format=0)
Definition: pointcloud.h:134
CSG_Shapes::Assign
virtual bool Assign(CSG_Data_Object *pObject, bool bProgress=false)
Definition: shapes.cpp:351
SAGA_API_DLL_EXPORT
#define SAGA_API_DLL_EXPORT
Definition: api_core.h:94
CSG_Data_Object::Set_Modified
virtual void Set_Modified(bool bOn=true)
Definition: dataobject.h:227
CSG_PointCloud::Set_Modified
virtual void Set_Modified(bool bModified=true)
Definition: pointcloud.h:201
CSG_PointCloud::Set_Attribute
virtual bool Set_Attribute(sLong Index, int Field, const SG_Char *Value)
Definition: pointcloud.h:192
CSG_PointCloud::is_Valid
virtual bool is_Valid(void) const
Definition: pointcloud.h:141
CSG_PointCloud::Set_NoData
bool Set_NoData(int Field)
Definition: pointcloud.h:173
CSG_PointCloud::Set_Cursor
bool Set_Cursor(sLong Index)
Definition: pointcloud.h:165
CSG_PointCloud::Del_Records
virtual bool Del_Records(void)
Definition: pointcloud.h:213
CSG_Table::Add_Field
virtual bool Add_Field(const CSG_String &Name, TSG_Data_Type Type, int Position=-1)
Definition: table.cpp:465
CSG_PointCloud::Set_Attribute
bool Set_Attribute(int Field, double Value)
Definition: pointcloud.h:171
CSG_PointCloud::is_NoData
bool is_NoData(int Field) const
Definition: pointcloud.h:174
CSG_PointCloud::is_NoData
bool is_NoData(sLong Index, int Field) const
Definition: pointcloud.h:184
SG_Char
#define SG_Char
Definition: api_core.h:536
TSG_Data_Object_Type
TSG_Data_Object_Type
Definition: dataobject.h:117
CSG_Array
Definition: api_core.h:308
shapes.h
CSG_String
Definition: api_core.h:563
CSG_MetaData
Definition: metadata.h:88
CSG_PointCloud::Set_Value
virtual bool Set_Value(sLong Index, int Field, const SG_Char *Value)
Definition: pointcloud.h:188
POINTCLOUD_FILE_FORMAT_Compressed
@ POINTCLOUD_FILE_FORMAT_Compressed
Definition: pointcloud.h:92
CSG_Shapes::Destroy
virtual bool Destroy(void)
Definition: shapes.cpp:331
POINTCLOUD_FILE_FORMAT_Undefined
@ POINTCLOUD_FILE_FORMAT_Undefined
Definition: pointcloud.h:90
CSG_Table::Del_Field
virtual bool Del_Field(int Field)
Definition: table.cpp:504
CSG_PointCloud::Get_Y
double Get_Y(sLong Index) const
Definition: pointcloud.h:179
CSG_Table::Ins_Record
virtual CSG_Table_Record * Ins_Record(sLong Index, CSG_Table_Record *pCopy=NULL)
Definition: table.cpp:825
CSG_Table::Set_Value
virtual bool Set_Value(sLong Index, int Field, const SG_Char *Value)
Definition: table.cpp:1155
CSG_Table::Create
bool Create(void)
Definition: table.cpp:153
CSG_Shapes
Definition: shapes.h:773
CSG_PointCloud
Definition: pointcloud.h:105
TSG_Data_Type
TSG_Data_Type
Definition: api_core.h:995
CSG_PointCloud::Get_Attribute_Name
const SG_Char * Get_Attribute_Name(int Field) const
Definition: pointcloud.h:154
CSG_Shapes::On_Update
virtual bool On_Update(void)
Definition: shapes.cpp:433
CSG_Table::Add_Record
virtual CSG_Table_Record * Add_Record(CSG_Table_Record *pCopy=NULL)
Definition: table.cpp:819
CSG_Table::Sort
bool Sort(const char *Field, bool bAscending=true)
Definition: table.cpp:1332
CSG_PointCloud::Set_NoData
bool Set_NoData(sLong Index, int Field)
Definition: pointcloud.h:183
CSG_Table::Del_Selection
virtual sLong Del_Selection(void)
Definition: table_selection.cpp:178
CSG_PointCloud::Del_Shape
virtual bool Del_Shape(sLong Index)
Definition: pointcloud.h:212
CSG_Shape
Definition: shapes.h:141
CSG_Shapes::Select
virtual bool Select(sLong Index, bool bInvert=false)
Definition: shapes_selection.cpp:63
SG_DATAOBJECT_TYPE_PointCloud
@ SG_DATAOBJECT_TYPE_PointCloud
Definition: dataobject.h:123
CSG_PointCloud::Get_Attribute
virtual bool Get_Attribute(sLong Index, int Field, CSG_String &Value) const
Definition: pointcloud.h:193
CSG_PointCloud::Del_Record
virtual bool Del_Record(sLong Index)
Definition: pointcloud.h:211
CSG_Table::Mov_Field
virtual bool Mov_Field(int Field, int Position)
Definition: table.cpp:542