Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/core/OutputBuffer.h @ 1502

Last change on this file since 1502 was 1502, checked in by rgrieder, 16 years ago
  • @everyone: Do not create a branch until I've added the svn:eol-style property correctly. Otherwise this would cost me another 4 hours or so when we want to merge back.
  • merged network branch back to trunk
  • I had to omit the changes from last evening concerning the line endings
  • might not work yet because of the line endings
  • @beni: script branch is the only branch still open. you probably will have to apply a patch because of inconsistent new lines
File size: 2.9 KB
RevLine 
[1312]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _OutputBuffer_H__
30#define _OutputBuffer_H__
31
[1313]32#include <list>
[1312]33#include <sstream>
[1322]34#include <iostream>
[1312]35
36#include "CorePrereqs.h"
37
38namespace orxonox
39{
[1313]40    class _CoreExport OutputBufferListener
[1312]41    {
42        friend class OutputBuffer;
[1313]43
[1424]44        public:
45            virtual ~OutputBufferListener() {}
46
47        private:
48            virtual void outputChanged() = 0;
[1312]49    };
50
51    class _CoreExport OutputBuffer
52    {
53        public:
[1313]54            OutputBuffer() {}
55            ~OutputBuffer() {}
[1312]56
57            template <class T>
58            inline OutputBuffer& operator<<(T object)
59            {
60                this->stream_ << object;
61                this->callListeners();
[1313]62                return *this;
[1312]63            }
64
[1322]65            OutputBuffer& operator<<(std::ostream& (*manipulator)(std::ostream&));
66            OutputBuffer& operator<<(std::ios& (*manipulator)(std::ios&));
67            OutputBuffer& operator<<(std::ios_base& (*manipulator)(std::ios_base&));
68
[1312]69            template <class T>
70            inline void add(T object)
71            {
72                this->stream_ << object;
73                this->callListeners();
74            }
75
76            template <class T>
77            inline void addLine(T object)
78            {
79                this->stream_ << object << std::endl;
80                this->callListeners();
81            }
82
83            inline void newline()
84            {
85                this->stream_ << std::endl;
86                this->callListeners();
87            }
88
89            inline void flush()
90            {
91                this->stream_.flush();
92            }
93
94            bool getLine(std::string* output);
95
96            void registerListener(OutputBufferListener* listener);
97            void unregisterListener(OutputBufferListener* listener);
98
99        private:
100            void callListeners();
101
102            std::stringstream stream_;
[1313]103            std::list<OutputBufferListener*> listeners_;
[1312]104    };
105}
106
107#endif /* _OutputBuffer_H__ */
Note: See TracBrowser for help on using the repository browser.