-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataStream.h
57 lines (43 loc) · 886 Bytes
/
DataStream.h
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
#ifndef DATASTREAM_H_INCLUDED
#define DATASTREAM_H_INCLUDED
#include <SFML/Network.hpp>
#include <SFML/System.hpp>
class DataStream: public sf::Packet
{
public:
// generic types
template <typename T>
T read(){
T value;
*this >> value;
return value;
};
template <typename T>
bool read(T& value){
return (*this >> value);
};
template <typename T>
bool write(T& value){
return (*this << value);
};
// vectors
template <typename T>
sf::Vector2<T> readVec(){
sf::Vector2<T> value;
*this >> value.x;
*this >> value.y;
return value;
};
template <typename T>
bool read(sf::Vector2<T>& value){
return (*this >> value.x >> value.y);
};
template <typename T>
bool write(sf::Vector2<T>& value){
return (*this << value.x << value.y);
};
protected:
DataStream(){
};
};
#endif // DATASTREAM_H_INCLUDED