-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReadInputFile.h
More file actions
44 lines (39 loc) · 962 Bytes
/
ReadInputFile.h
File metadata and controls
44 lines (39 loc) · 962 Bytes
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 READ_INPUT_FILE_H
#define READ_INPUT_FILE_H
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <stdlib.h>
#include "ObjectTypes.h"
class ReadInputFile {
private:
string outputFileName;
int width;
int height;
int numberOfLightSources;
int numberOfSurfaces;
int numberOfSceneObjs;
int numberOfPigments;
Camera camera;
vector<LightSource> lightSources;
vector<Pigment> pigments;
vector<Surface> surfaces;
vector<SceneObj> sceneObjs;
public:
ReadInputFile() {
}
ReadInputFile(const char* fileName) {
fillObjectsFromFile(fileName);
}
const string getOutputFileName(void);
const int getWidth(void);
const int getHeight(void);
const vector<LightSource> &getLightSources(void);
const vector<Surface> &getSurfaces(void);
const vector<SceneObj> &getSceneObjs(void);
const vector<Pigment> &getPigments(void);
const Camera &getCamera(void);
void fillObjectsFromFile(const char* fileName);
};
#endif