Thu, 11 Dec 2014 16:17:35 +0200
- now with more license headers
9
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
1 | /* |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
2 | Copyright 2014 Teemu Piippo |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
3 | All rights reserved. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
4 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
5 | Redistribution and use in source and binary forms, with or without |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
6 | modification, are permitted provided that the following conditions |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
7 | are met: |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
8 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
9 | 1. Redistributions of source code must retain the above copyright |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
10 | notice, this list of conditions and the following disclaimer. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
11 | 2. Redistributions in binary form must reproduce the above copyright |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
12 | notice, this list of conditions and the following disclaimer in the |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
13 | documentation and/or other materials provided with the distribution. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
14 | 3. Neither the name of the copyright holder nor the names of its |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
15 | contributors may be used to endorse or promote products derived from |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
16 | this software without specific prior written permission. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
17 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
20 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
23 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
24 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
29 | */ |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
30 | |
5 | 31 | #pragma once |
32 | #include "../main.h" | |
33 | ||
34 | class String; | |
35 | ||
36 | enum { MAX_NETWORK_STRING = 0x800 }; | |
37 | ||
38 | // TODO: Make able to handle big-endian too | |
39 | class Bytestream | |
40 | { | |
41 | public: | |
42 | static bool sink; | |
43 | ||
44 | Bytestream (unsigned long length = 0x800); | |
45 | Bytestream (const unsigned char* data, unsigned long length); | |
46 | Bytestream (const Vector<unsigned char>& bytes); | |
47 | ~Bytestream(); | |
48 | ||
49 | inline METHOD allocated_size() const -> unsigned long; | |
50 | inline METHOD bytes_left() const -> unsigned long; | |
51 | METHOD clear() -> void; | |
52 | inline METHOD data() -> unsigned char*; | |
53 | inline METHOD data() const -> const unsigned char*; | |
54 | METHOD grow_to_fit (unsigned long bytes) -> void; | |
55 | inline METHOD position() const -> unsigned long; | |
56 | METHOD read (unsigned char* buffer, unsigned long length, bool* ok = &sink) -> void; | |
57 | METHOD read_byte (bool* ok = &sink) -> char; | |
58 | METHOD read_short (bool* ok = &sink) -> short int; | |
59 | METHOD read_long (bool* ok = &sink) -> long int; | |
60 | METHOD read_string (bool* ok = &sink) -> String; | |
61 | METHOD read_float (bool* ok = &sink) -> float; | |
62 | METHOD resize (unsigned long length) -> void; | |
63 | inline METHOD rewind() -> void; | |
64 | inline METHOD seek (unsigned long pos) -> void; | |
65 | METHOD write (const unsigned char* val, unsigned int length) -> void; | |
66 | METHOD write_buffer (const Bytestream& other) -> void; | |
67 | METHOD write_buffer (const Vector<unsigned char>& other) -> void; | |
68 | METHOD write_byte (char val) -> void; | |
69 | METHOD write_double (double val) -> void; | |
70 | METHOD write_float (float val) -> void; | |
71 | METHOD write_long (long int val) -> void; | |
72 | METHOD write_short (short int val) -> void; | |
73 | METHOD write_string (const String& val) -> void; | |
74 | inline METHOD written_length() const -> unsigned long; | |
75 | ||
76 | inline METHOD operator[] (unsigned long idx) -> unsigned char&; | |
77 | inline METHOD operator[] (unsigned long idx) const -> unsigned char; | |
78 | ||
79 | private: | |
80 | unsigned char* m_data; | |
81 | unsigned char* m_cursor; | |
82 | unsigned long m_allocatedSize; | |
83 | unsigned long m_writtenLength; | |
84 | ||
85 | METHOD init (const unsigned char* data, unsigned long length) -> void; | |
86 | METHOD write (unsigned char val) -> void; | |
87 | inline METHOD space_left() const -> unsigned long; | |
88 | }; | |
89 | ||
90 | // ------------------------------------------------------------------------------------------------- | |
91 | // | |
92 | inline METHOD | |
93 | Bytestream::allocated_size() const -> unsigned long | |
94 | { | |
95 | return m_allocatedSize; | |
96 | } | |
97 | ||
98 | // ------------------------------------------------------------------------------------------------- | |
99 | // | |
100 | inline METHOD | |
101 | Bytestream::written_length() const -> unsigned long | |
102 | { | |
103 | return m_writtenLength; | |
104 | } | |
105 | ||
106 | // ------------------------------------------------------------------------------------------------- | |
107 | // | |
108 | inline METHOD | |
109 | Bytestream::operator[] (unsigned long idx) -> unsigned char& | |
110 | { | |
111 | return m_data[idx]; | |
112 | } | |
113 | ||
114 | // ------------------------------------------------------------------------------------------------- | |
115 | // | |
116 | inline METHOD | |
117 | Bytestream::operator[] (unsigned long idx) const -> unsigned char | |
118 | { | |
119 | return m_data[idx]; | |
120 | } | |
121 | ||
122 | // ------------------------------------------------------------------------------------------------- | |
123 | // | |
124 | inline METHOD | |
125 | Bytestream::position() const -> unsigned long | |
126 | { | |
127 | return m_cursor - m_data; | |
128 | } | |
129 | ||
130 | // ------------------------------------------------------------------------------------------------- | |
131 | // | |
132 | inline METHOD | |
133 | Bytestream::seek (unsigned long pos) -> void | |
134 | { | |
135 | m_cursor = m_data + pos; | |
136 | } | |
137 | ||
138 | // ------------------------------------------------------------------------------------------------- | |
139 | // | |
140 | inline METHOD | |
141 | Bytestream::rewind() -> void | |
142 | { | |
143 | m_cursor = m_data; | |
144 | } | |
145 | ||
146 | // ------------------------------------------------------------------------------------------------- | |
147 | // | |
148 | inline METHOD | |
149 | Bytestream::bytes_left() const -> unsigned long | |
150 | { | |
151 | return (m_writtenLength - (m_cursor - &m_data[0])); | |
152 | } | |
153 | ||
154 | // ------------------------------------------------------------------------------------------------- | |
155 | // | |
156 | inline METHOD | |
157 | Bytestream::space_left() const -> unsigned long | |
158 | { | |
159 | return (m_allocatedSize - m_writtenLength); | |
160 | } | |
161 | ||
162 | // ------------------------------------------------------------------------------------------------- | |
163 | // | |
164 | inline METHOD | |
165 | Bytestream::data() -> unsigned char* | |
166 | { | |
167 | return m_data; | |
168 | } | |
169 | ||
170 | // ------------------------------------------------------------------------------------------------- | |
171 | // | |
172 | inline METHOD | |
173 | Bytestream::data() const -> const unsigned char* | |
174 | { | |
175 | return m_data; | |
176 | } |