X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Farray2d.h;h=8c323f4034ca45f3b1449b3ba3f2b50c7db3c2ed;hp=8d7cf4e3c4f3c577ebef27db3669ba17fb98cbc7;hb=9b2bb510160bdb56f04847f5b55ab61dd8a47976;hpb=07b93dbf2b66fa23c5378ab0fa42f9a7f0083380 diff --git a/include/array2d.h b/include/array2d.h index 8d7cf4e..8c323f4 100644 --- a/include/array2d.h +++ b/include/array2d.h @@ -1,53 +1,110 @@ +/***************************************************************************** +** FILE IDENTIFICATION +** +** Name: array2d.h +** Purpose: 2-dimension array classes +** Programmer: Kevin Rosenberg +** Date Started: June 2000 +** +** This is part of the CTSim program +** Copyright (C) 1983-2000 Kevin Rosenberg +** +** $Id: array2d.h,v 1.8 2000/09/02 05:10:39 kevin Exp $ +** +** This program is free software; you can redistribute it and/or modify +** it under the terms of the GNU General Public License (version 2) as +** published by the Free Software Foundation. +** +** 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +******************************************************************************/ + #ifndef ARRAY2D_H #define ARRAY2D_H -#include +#include "ctsupport.h" + template class Array2d { - private: - unsigned int nx; - unsigned int ny; - public: - - T** array_data; - Array2d (unsigned int x, unsigned int y) + : m_nx(x), m_ny(y), array_data(0) { - nx = x; - ny = y; - array_data = new T*[nx]; - - for (int i = 0; i < nx; i++) - array_data[i] = new T[ny]; + allocArray(); } + Array2d () + : m_nx(0), m_ny(0), array_data(0) + {} ~Array2d () { - for (int i = 0; i < nx; i++) - delete array_data[i]; - delete array_data; + deleteArray(); } - T** getArray (void) const + void initSetSize (unsigned int x, unsigned int y) + { + m_nx = x; + m_ny = y; + deleteArray(); + allocArray(); + } + + T** getArray () const { return array_data; } T* getColumn (unsigned int x) const - { return array_data[x]; } + { return (array_data ? array_data[x] : NULL); } T getPoint (unsigned int x, unsigned int y) const - { return (array_data[x][y]); } + { return (array_data ? array_data[x][y] : NULL); } - unsigned int sizeofPixel (void) const + unsigned int sizeofPixel () const { return sizeof(T); } - unsigned int sizeofColumn (void) const - { return (sizeof(T) * ny); } + unsigned int sizeofColumn () const + { return (sizeof(T) * m_ny); } + + unsigned int sizeofArray () const + { return (sizeof(T) * m_nx * m_ny); } + + + private: + unsigned int m_nx; + unsigned int m_ny; + T** array_data; + + void allocArray () + { + if (array_data) + deleteArray(); + + array_data = new T*[m_nx]; + + for (unsigned int i = 0; i < m_nx; i++) + array_data[i] = new T[m_ny]; + } + + void deleteArray () + { + if (array_data) { + for (unsigned int i = 0; i < m_nx; i++) + delete array_data [i]; + delete array_data; + array_data = NULL; + } + } + - unsigned int sizeofArray (void) const - { return (sizeof(T) * nx * ny); } + Array2d& operator= (const Array2d& rhs); //assignment operator + Array2d (const Array2d& rhs); // copy constructor };