~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/tools/tArray.h

  • Committer: luke-jr
  • Date: 2006-05-29 01:55:42 UTC
  • Revision ID: svn-v3-list-QlpoOTFBWSZTWZvbKhsAAAdRgAAQABK6798QIABURMgAAaeoNT1TxT1DQbKaeobXKiyAmlWT7Y5MkdJOtXDtB7w7DOGFBHiOBxaUIu7HQyyQSvxdyRThQkJvbKhs:7d95bf1e-0414-0410-9756-b78462a59f44:armagetronad%2Fbranches%2F0.2.8%2Farmagetronad:4612
Unify tags/branches of modules released together

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
*************************************************************************
 
4
 
 
5
ArmageTron -- Just another Tron Lightcycle Game in 3D.
 
6
Copyright (C) 2000  Manuel Moos (manuel@moosnet.de)
 
7
 
 
8
**************************************************************************
 
9
 
 
10
This program is free software; you can redistribute it and/or
 
11
modify it under the terms of the GNU General Public License
 
12
as published by the Free Software Foundation; either version 2
 
13
of the License, or (at your option) any later version.
 
14
 
 
15
This program is distributed in the hope that it will be useful,
 
16
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
GNU General Public License for more details.
 
19
 
 
20
You should have received a copy of the GNU General Public License
 
21
along with this program; if not, write to the Free Software
 
22
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
23
  
 
24
***************************************************************************
 
25
 
 
26
*/
 
27
 
 
28
#ifndef ArmageTron_ARRAY_H
 
29
#define ArmageTron_ARRAY_H
 
30
 
 
31
#include "defs.h"
 
32
#include <new>
 
33
#include "tError.h"
 
34
#include "tSafePTR.h"
 
35
 
 
36
 
 
37
class GrowingArrayBase {
 
38
    int len;    // current logical size
 
39
    int size;   // current size in memory
 
40
    void *base; // start of memory block
 
41
 
 
42
    const GrowingArrayBase & operator=(const GrowingArrayBase &);
 
43
    GrowingArrayBase(GrowingArrayBase &);
 
44
 
 
45
protected:
 
46
    void ResizeBase(int i,int size_of_T, bool useMalloc);
 
47
    void *Base() const {return base;}
 
48
 
 
49
    GrowingArrayBase(int firstsize,int size_of_T, bool useMalloc);
 
50
    void Delete( bool useMalloc );
 
51
    ~GrowingArrayBase();
 
52
 
 
53
    /*
 
54
    #ifdef tSAFEPTR
 
55
    void SetSize(int s){size=s;}
 
56
    void SetBase(void *b){base=b;}
 
57
    #endif
 
58
    */
 
59
 
 
60
public:
 
61
    void ComplainIfFull();
 
62
 
 
63
    void SetLen(int i){len=i;}
 
64
    int Len()const {return len;}
 
65
    int  Size() const {return size;}
 
66
};
 
67
 
 
68
 
 
69
template<class T, bool MALLOC=false> class tArray: public GrowingArrayBase {
 
70
protected:
 
71
    void Init(){
 
72
        int i;
 
73
        for(i=Size()-1;i>=0;i--)
 
74
            new(reinterpret_cast<T *>(Base())+i) T();
 
75
    }
 
76
 
 
77
    void resize(int i){
 
78
        int oldsize=Size();
 
79
        ResizeBase(i,sizeof(T),MALLOC);
 
80
        // dump(low,flow,"Array resize from " << oldsize << " to " << Size());
 
81
        for(i=Size()-1;i>=oldsize;i--)
 
82
            new(reinterpret_cast<T *>(Base())+i) T();
 
83
    }
 
84
 
 
85
 
 
86
    void Clear(){
 
87
        int i;
 
88
        for(i=Size()-1;i>=0;i--){
 
89
            // dump(low,flow,"i=" << i);
 
90
            ((reinterpret_cast<T *>(Base()))+i)->~T();
 
91
        }
 
92
        Delete(MALLOC);
 
93
    }
 
94
 
 
95
 
 
96
    void CopyFrom(const tArray &A){
 
97
        int i;
 
98
        for(i=Len()-1;i>=0;i--)
 
99
            new(reinterpret_cast<T *>(Base())+i) T(A(i));
 
100
        for(i=Len();i<Size();i++)
 
101
            new(reinterpret_cast<T *>(Base())+i) T();
 
102
    }
 
103
 
 
104
public:
 
105
    void SetLen(int i){
 
106
        GrowingArrayBase::SetLen(i);
 
107
        if (i>Size()) resize(i);
 
108
    }
 
109
 
 
110
    ~tArray(){
 
111
        tERR_FLOW_LOW();
 
112
        Clear();
 
113
        Delete(MALLOC);
 
114
    }
 
115
 
 
116
 
 
117
    tArray(int firstsize=0)
 
118
            :GrowingArrayBase(firstsize,sizeof(T),MALLOC) {
 
119
        // dump(low,flow,"con:size " << firstsize);
 
120
        Init();
 
121
    };
 
122
 
 
123
 
 
124
    tArray(const tArray &A)
 
125
            :GrowingArrayBase(A.Len(),sizeof(T),MALLOC){
 
126
        CopyFrom(A);
 
127
    };
 
128
 
 
129
 
 
130
    T& operator[](int i) {
 
131
#ifdef DEBUG
 
132
        if (i<0) {
 
133
            tERR_ERROR_INT("Range error;accesed negative element " << i );
 
134
        }
 
135
#endif
 
136
        if (i>=Len())
 
137
            SetLen(i+1);
 
138
 
 
139
        //    dump(low,flow,"[" << i << "]" << "=" << ((T *)Base())[i] << '\n');
 
140
 
 
141
        return((reinterpret_cast<T *>(Base()))[i]);
 
142
    };
 
143
 
 
144
 
 
145
    T& operator()(int i) const{
 
146
        tASSERT( i >= 0 && i < Len() );
 
147
 
 
148
        return((reinterpret_cast<T *>(Base()))[i]);
 
149
    };
 
150
 
 
151
    T* operator+(int i) const{
 
152
    #ifdef DEBUG
 
153
        if (i<0) {tERR_ERROR_INT("Range error;accesed negative element " << i )}
 
154
        if (i>=Len())
 
155
        {tERR_ERROR_INT("Range error;accesed element "
 
156
                            << i <<" of maximal " <<Len())}
 
157
    #endif
 
158
 
 
159
        return(reinterpret_cast<T *>(Base())+i);
 
160
    };
 
161
 
 
162
    const tArray<T> &operator=(const tArray<T> &A){
 
163
 
 
164
        SetLen(A.Len());
 
165
        Clear();
 
166
        CopyFrom(A);
 
167
 
 
168
        return *this;
 
169
    };
 
170
 
 
171
    void RemoveAt( int index )
 
172
    {
 
173
        int newLen = this->Len()-1;
 
174
        T keep = (*this)[ index ];
 
175
        if ( index < newLen )
 
176
            (*this)[ index ] = (*this)[ newLen ];
 
177
        this->SetLen( newLen );
 
178
    }
 
179
 
 
180
    bool Remove( const T& t )
 
181
    {
 
182
        for ( int i = this->Len()-1; i >= 0; --i )
 
183
        {
 
184
            if ( (*this)[i] == t )
 
185
            {
 
186
                this->RemoveAt( i );
 
187
                return true;
 
188
            }
 
189
        }
 
190
 
 
191
        return false;
 
192
    }
 
193
 
 
194
    void Insert( const T& t )
 
195
    {
 
196
        SetLen( this->Len()+1 );
 
197
        (*this)[ this->Len() -1 ] = t;
 
198
    }
 
199
};
 
200
 
 
201
 
 
202
 
 
203
 
 
204
#endif // _ARRAY_H_
 
205
 
 
206
 
 
207
 
 
208