summaryrefslogtreecommitdiffstats
path: root/Temparray.h
blob: 6afbe3c712997b323fcbe402f3b7fce1801a6eb3 (plain)
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
#ifndef _TEMPARRAY_H_
#define _TEMPARRAY_H_

#include "Cubehole.h"
#include "gl.h"

class Temparray
{
  public:
    Temparray(float initialtemp, int size[3]){
      teperature = new float[size[0]][size[1]][size[2]][4][6];
      cubearray = new Cubehole[size[0]][size[1]][size[2]];
      tempInit(initialtemp, size);
    }
    ~Temparray(){
      delete[] temperature;
      delete[] cubearray;
    }

    void setTemp(float temp, int x, int y, int z, int direct, int pos){
      temperature[x][y][z][direct][pos]= temp;
    }
    void display();

  private:
    float *temperature = 0;
    Cubehole *cubearray = 0;

    void tempInit(float temp0, int size[3]){
      for(int i=0; i<size[0]; i++){
        for(int j=0; j<size[1]; j++){
          for(int k=0; k<size[2]; k++){
            for(int l=0; l<4; l++){
              for(int m=0; m<6; m++){
                setTemp(temp0, i, j, k, l, m);
              }
            }
          }
        }
      }
    }
};

#endif /* _TEMPARRAY_H_ */