-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathclasses.cpp
162 lines (133 loc) · 2.97 KB
/
classes.cpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
//
// classes.cpp
// Undiscovered Worlds
//
// Created by Jonathan Hill on 17/04/2020.
//
// Please see functions.hpp for notes.
#include "classes.hpp"
#include "functions.hpp"
#include <list>
// Multiple value classes
twointegers::twointegers() : x(0), y(0) // constructor
{
}
twointegers::~twointegers() // destructor
{
}
threeintegers::threeintegers() : x(0), y(0), z(0) // constructor
{
}
threeintegers::~threeintegers() // destructor
{
}
fourintegers::fourintegers() : w(0), x(0), y(0), z(0) // constructor
{
}
fourintegers::~fourintegers() // destructor
{
}
fourshorts::fourshorts() : w(0), x(0), y(0), z(0) // constructor
{
}
fourshorts::~fourshorts() // destructor
{
}
fiveintegers::fiveintegers() : v(0), w(0), x(0), y(0), z(0) // constructor
{
}
fiveintegers::~fiveintegers() // destructor
{
}
twofloats::twofloats() : x(0), y(0) // constructor
{
}
twofloats::~twofloats() // destructor
{
}
threefloats::threefloats() : x(0), y(0), z(0) // constructor
{
}
threefloats::~threefloats() // destructor
{
}
twolongdoubles::twolongdoubles() : x(0), y(0) // constructor
{
}
twolongdoubles::~twolongdoubles() // destructor
{
}
threelongdoubles::threelongdoubles() : x(0), y(0), z(0) // constructor
{
}
threelongdoubles::~threelongdoubles() // destructor
{
}
globepoint::globepoint() : face(0), x(0), y(0) // constructor
{
}
globepoint::~globepoint() // destructor
{
}
fourglobepoints::fourglobepoints() // constructor
{
}
fourglobepoints::~fourglobepoints() // destructor
{
}
fourdirs::fourdirs() // constructor
{
}
fourdirs::~fourdirs() // destructor
{
}
// Peaktemplate class
peaktemplate::peaktemplate() // constructor
{
}
peaktemplate::~peaktemplate() // destructor
{
}
int peaktemplate::span(int index) const {return itsspan[index];}
void peaktemplate::setspan(int index, int amount) {itsspan[index]=amount;}
int peaktemplate::centrex(int index) const {return itscentrex[index];}
void peaktemplate::setcentrex(int index, int amount) {itscentrex[index]=amount;}
int peaktemplate::centrey(int index) const {return itscentrey[index];}
void peaktemplate::setcentrey(int index, int amount) {itscentrey[index]=amount;}
int peaktemplate::peakmap(int index, int x, int y) const
{
if (x<0 || x>PEAKWIDTH || y<0 || y>PEAKHEIGHT)
return 0;
return itspeakmap[index][x][y];
}
void peaktemplate::setpeakmap(int index, int x, int y, int amount) {itspeakmap[index][x][y]=amount;}
// boolshapetemplate class
boolshapetemplate::boolshapetemplate()
{
}
boolshapetemplate::~boolshapetemplate()
{
}
void boolshapetemplate::clear()
{
for (int i = 0; i < (int)itsvector.size(); i++)
{
for (int j = 0; j < (int)itsvector[i].size(); j++)
itsvector[i][j] = 0;
}
}
// byteshapetemplate class
byteshapetemplate::byteshapetemplate()
{
}
byteshapetemplate::~byteshapetemplate()
{
}
void byteshapetemplate::clear()
{
for (int i = 0; i < (int)itsvector.size(); i++)
{
for (int j = 0; j < (int)itsvector[i].size(); j++)
itsvector[i][j] = 0;
}
}