Skip to content

Commit a370b15

Browse files
committed
Fix line endings
Add .gitattributes file for line ending conversion
1 parent aafeeae commit a370b15

File tree

9 files changed

+444
-428
lines changed

9 files changed

+444
-428
lines changed

.gitattributes

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.c text
7+
*.cc text
8+
*.cxx text
9+
*.cpp text
10+
*.c++ text
11+
*.hpp text
12+
*.h text
13+
*.h++ text
14+
*.hh text
15+
*.txt text
16+
*.md text
+55-55
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
1-
/**
2-
* @file i_map.h
3-
* Declaration for an interface to a map
4-
*/
5-
6-
#ifndef STATE_MAP_INTERFACES_I_MAP_H
7-
#define STATE_MAP_INTERFACES_I_MAP_H
8-
9-
#include "physics/vector.h"
10-
#include "state/map/map_element.h"
11-
#include "state/state_export.h"
12-
13-
namespace state {
14-
15-
class STATE_EXPORT IMap {
16-
public:
17-
18-
virtual ~IMap() {}
19-
20-
/**
21-
* Gets an element by x, y co-ordinates
22-
*
23-
* @param[in] position The x, y co-ordinates
24-
*
25-
* @return The element by xy
26-
*/
27-
virtual MapElement& GetElementByXY(physics::Vector position) = 0;
28-
29-
/**
30-
* Gets an element by its offset in the 2D grid of elements
31-
*
32-
* @param[in] position The offset
33-
*
34-
* @return The element by offset
35-
*/
36-
virtual MapElement& GetElementByOffset(physics::Vector position) = 0;
37-
38-
/**
39-
* Gets the size of the map (width/height) in offsets
40-
*
41-
* @return The map's size
42-
*/
43-
virtual int64_t GetSize() = 0;
44-
45-
/**
46-
* Gets the size of an element of the map
47-
*
48-
* @return The element size
49-
*/
50-
virtual int64_t GetElementSize() = 0;
51-
};
52-
53-
}
54-
55-
#endif
1+
/**
2+
* @file i_map.h
3+
* Declaration for an interface to a map
4+
*/
5+
6+
#ifndef STATE_MAP_INTERFACES_I_MAP_H
7+
#define STATE_MAP_INTERFACES_I_MAP_H
8+
9+
#include "physics/vector.h"
10+
#include "state/map/map_element.h"
11+
#include "state/state_export.h"
12+
13+
namespace state {
14+
15+
class STATE_EXPORT IMap {
16+
public:
17+
18+
virtual ~IMap() {}
19+
20+
/**
21+
* Gets an element by x, y co-ordinates
22+
*
23+
* @param[in] position The x, y co-ordinates
24+
*
25+
* @return The element by xy
26+
*/
27+
virtual MapElement& GetElementByXY(physics::Vector position) = 0;
28+
29+
/**
30+
* Gets an element by its offset in the 2D grid of elements
31+
*
32+
* @param[in] position The offset
33+
*
34+
* @return The element by offset
35+
*/
36+
virtual MapElement& GetElementByOffset(physics::Vector position) = 0;
37+
38+
/**
39+
* Gets the size of the map (width/height) in offsets
40+
*
41+
* @return The map's size
42+
*/
43+
virtual int64_t GetSize() = 0;
44+
45+
/**
46+
* Gets the size of an element of the map
47+
*
48+
* @return The element size
49+
*/
50+
virtual int64_t GetElementSize() = 0;
51+
};
52+
53+
}
54+
55+
#endif

src/state/include/state/map/map.h

+78-78
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,78 @@
1-
/**
2-
* @file map.h
3-
* Declaration for the map of the game
4-
*/
5-
6-
#ifndef STATE_MAP_MAP_H
7-
#define STATE_MAP_MAP_H
8-
9-
#include "physics/vector.h"
10-
#include "state/map/interfaces/i_map.h"
11-
#include "state/map/map_element.h"
12-
#include "state/state_export.h"
13-
14-
namespace state {
15-
16-
class STATE_EXPORT Map : public IMap {
17-
private:
18-
19-
/**
20-
* 2D grid of elements of the map
21-
*/
22-
std::vector<std::vector<MapElement> > map_elements;
23-
24-
/**
25-
* Size of one map_element (width/height)
26-
*/
27-
int64_t element_size;
28-
29-
public:
30-
31-
Map() {};
32-
33-
Map(
34-
std::vector<std::vector<MapElement> > &map_elements,
35-
int64_t element_size);
36-
37-
/**
38-
* Gets an element by x, y co-ordinates
39-
*
40-
* @param[in] position The x, y co-ordinates
41-
*
42-
* @return The element by xy
43-
*
44-
* @throw std::out_of_range If position does not
45-
* point to a valid element
46-
*/
47-
MapElement& GetElementByXY(physics::Vector position) override;
48-
49-
/**
50-
* Gets an element by its offset in the 2D grid of elements
51-
*
52-
* @param[in] position The offset
53-
*
54-
* @return The element by offset
55-
*
56-
* @throw std::out_of_range If position does not
57-
* point to a valid element
58-
*/
59-
MapElement& GetElementByOffset(physics::Vector position) override;
60-
61-
/**
62-
* Gets the size of the map (width/height) in offsets
63-
*
64-
* @return The map's size
65-
*/
66-
int64_t GetSize() override;
67-
68-
/**
69-
* Gets the size of an element of the map
70-
*
71-
* @return The element size
72-
*/
73-
int64_t GetElementSize() override;
74-
};
75-
76-
}
77-
78-
#endif
1+
/**
2+
* @file map.h
3+
* Declaration for the map of the game
4+
*/
5+
6+
#ifndef STATE_MAP_MAP_H
7+
#define STATE_MAP_MAP_H
8+
9+
#include "physics/vector.h"
10+
#include "state/map/interfaces/i_map.h"
11+
#include "state/map/map_element.h"
12+
#include "state/state_export.h"
13+
14+
namespace state {
15+
16+
class STATE_EXPORT Map : public IMap {
17+
private:
18+
19+
/**
20+
* 2D grid of elements of the map
21+
*/
22+
std::vector<std::vector<MapElement> > map_elements;
23+
24+
/**
25+
* Size of one map_element (width/height)
26+
*/
27+
int64_t element_size;
28+
29+
public:
30+
31+
Map() {};
32+
33+
Map(
34+
std::vector<std::vector<MapElement> > &map_elements,
35+
int64_t element_size);
36+
37+
/**
38+
* Gets an element by x, y co-ordinates
39+
*
40+
* @param[in] position The x, y co-ordinates
41+
*
42+
* @return The element by xy
43+
*
44+
* @throw std::out_of_range If position does not
45+
* point to a valid element
46+
*/
47+
MapElement& GetElementByXY(physics::Vector position) override;
48+
49+
/**
50+
* Gets an element by its offset in the 2D grid of elements
51+
*
52+
* @param[in] position The offset
53+
*
54+
* @return The element by offset
55+
*
56+
* @throw std::out_of_range If position does not
57+
* point to a valid element
58+
*/
59+
MapElement& GetElementByOffset(physics::Vector position) override;
60+
61+
/**
62+
* Gets the size of the map (width/height) in offsets
63+
*
64+
* @return The map's size
65+
*/
66+
int64_t GetSize() override;
67+
68+
/**
69+
* Gets the size of an element of the map
70+
*
71+
* @return The element size
72+
*/
73+
int64_t GetElementSize() override;
74+
};
75+
76+
}
77+
78+
#endif

0 commit comments

Comments
 (0)