3f4bd1817884a6d64701b16bd22e20e64c7bd180
[supertux.git] / src / physfs / physfs_stream.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #ifndef __PHYSFSSTREAM_HPP__
21 #define __PHYSFSSTREAM_HPP__
22
23 #include <stddef.h>
24 #include <physfs.h>
25 #include <string>
26 #include <streambuf>
27 #include <iostream>
28
29 /** This class implements a C++ streambuf object for physfs files.
30  * So that you can use normal istream operations on them
31  */
32 class IFileStreambuf : public std::streambuf
33 {
34 public:
35     IFileStreambuf(const std::string& filename);
36     ~IFileStreambuf();
37     
38 protected:
39     virtual int underflow();
40     virtual pos_type seekoff(off_type pos, std::ios_base::seekdir,
41         std::ios_base::openmode);
42     virtual pos_type seekpos(pos_type pos, std::ios_base::openmode);
43
44 private:
45     PHYSFS_file* file;
46     char buf[1024];
47 };
48
49 class OFileStreambuf : public std::streambuf
50 {
51 public:
52     OFileStreambuf(const std::string& filename);
53     ~OFileStreambuf();
54
55 protected:
56     virtual int overflow(int c);
57     virtual int sync();
58
59 private:
60     PHYSFS_file* file;
61     char buf[1024];
62 };
63
64 class IFileStream : public std::istream
65 {
66 public:
67     IFileStream(const std::string& filename);
68     ~IFileStream();
69 };
70
71 class OFileStream : public std::ostream
72 {
73 public:
74     OFileStream(const std::string& filename);
75     ~OFileStream();
76 };
77
78 #endif
79