Initial integration, lots of broken stuff
[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 <unison/vfs/stream.hpp>
24
25 typedef Unison::VFS::istream IFileStream;
26 typedef Unison::VFS::ostream OFileStream;
27
28 #if 0
29 #include <stddef.h>
30 #include <physfs.h>
31 #include <string>
32 #include <streambuf>
33 #include <iostream>
34
35 /** This class implements a C++ streambuf object for physfs files.
36  * So that you can use normal istream operations on them
37  */
38 class IFileStreambuf : public std::streambuf
39 {
40 public:
41     IFileStreambuf(const std::string& filename);
42     ~IFileStreambuf();
43
44 protected:
45     virtual int underflow();
46     virtual pos_type seekoff(off_type pos, std::ios_base::seekdir,
47         std::ios_base::openmode);
48     virtual pos_type seekpos(pos_type pos, std::ios_base::openmode);
49
50 private:
51     PHYSFS_file* file;
52     char buf[1024];
53 };
54
55 class OFileStreambuf : public std::streambuf
56 {
57 public:
58     OFileStreambuf(const std::string& filename);
59     ~OFileStreambuf();
60
61 protected:
62     virtual int overflow(int c);
63     virtual int sync();
64
65 private:
66     PHYSFS_file* file;
67     char buf[1024];
68 };
69
70 class IFileStream : public std::istream
71 {
72 public:
73     IFileStream(const std::string& filename);
74     ~IFileStream();
75 };
76
77 class OFileStream : public std::ostream
78 {
79 public:
80     OFileStream(const std::string& filename);
81     ~OFileStream();
82 };
83 #endif
84
85 #endif