~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/tools/tRecorderInternal.cpp

  • Committer: luke-jr
  • Date: 2006-05-29 01:55:42 UTC
  • Revision ID: svn-v3-list-QlpoOTFBWSZTWZvbKhsAAAdRgAAQABK6798QIABURMgAAaeoNT1TxT1DQbKaeobXKiyAmlWT7Y5MkdJOtXDtB7w7DOGFBHiOBxaUIu7HQyyQSvxdyRThQkJvbKhs:7d95bf1e-0414-0410-9756-b78462a59f44:armagetronad%2Fbranches%2F0.2.8%2Farmagetronad:4612
Unify tags/branches of modules released together

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
*************************************************************************
 
4
 
 
5
ArmageTron -- Just another Tron Lightcycle Game in 3D.
 
6
Copyright (C) 2000  Manuel Moos (manuel@moosnet.de)
 
7
 
 
8
**************************************************************************
 
9
 
 
10
This program is free software; you can redistribute it and/or
 
11
modify it under the terms of the GNU General Public License
 
12
as published by the Free Software Foundation; either version 2
 
13
of the License, or (at your option) any later version.
 
14
 
 
15
This program is distributed in the hope that it will be useful,
 
16
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
GNU General Public License for more details.
 
19
 
 
20
You should have received a copy of the GNU General Public License
 
21
along with this program; if not, write to the Free Software
 
22
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
23
 
 
24
***************************************************************************
 
25
 
 
26
*/
 
27
 
 
28
// declaration
 
29
#ifndef     TRECORDERINTERNAL_H_INCLUDED
 
30
#include    "tRecorderInternal.h"
 
31
#endif
 
32
 
 
33
#include    <ctype.h>
 
34
 
 
35
#ifdef      HAVE_STDLIB
 
36
#include    <stdlib.h>
 
37
#endif
 
38
 
 
39
#include    <fstream>
 
40
 
 
41
#include    "tCommandLine.h"
 
42
#include    "tConsole.h"
 
43
 
 
44
#undef  INLINE_DEF
 
45
#define INLINE_DEF
 
46
 
 
47
// static pointer to currently running recording
 
48
// !todo: make this a context item
 
49
tRecording * tRecording::currentRecording_ = 0;
 
50
tPlayback * tPlayback::currentPlayback_ = 0;
 
51
 
 
52
// ******************************************************************************************
 
53
// *
 
54
// * ~tRecording
 
55
// *
 
56
// ******************************************************************************************
 
57
//!
 
58
//!
 
59
// ******************************************************************************************
 
60
 
 
61
tRecording::~tRecording()
 
62
{
 
63
    // clear current recording
 
64
    currentRecording_ = 0;
 
65
}
 
66
 
 
67
// ******************************************************************************************
 
68
// *
 
69
// *    tRecording
 
70
// *
 
71
// ******************************************************************************************
 
72
//!
 
73
//!
 
74
// ******************************************************************************************
 
75
 
 
76
tRecording::tRecording()
 
77
{
 
78
    tASSERT( !currentRecording_ );
 
79
 
 
80
    std::cout << "Recording!\n";
 
81
 
 
82
    // set current recording
 
83
    currentRecording_ = this;
 
84
}
 
85
 
 
86
// ******************************************************************************************
 
87
// *
 
88
// * tRecording
 
89
// *
 
90
// ******************************************************************************************
 
91
//!
 
92
//!       @param  other   the source to copy from
 
93
//!
 
94
// ******************************************************************************************
 
95
 
 
96
tRecording::tRecording( tRecording const & other )
 
97
{
 
98
    tASSERT(false);
 
99
}
 
100
 
 
101
// ******************************************************************************************
 
102
// *
 
103
// *  operator =
 
104
// *
 
105
// ******************************************************************************************
 
106
//!
 
107
//!       @param  other   the source to copy from
 
108
//!     @return         a reference to this
 
109
//!
 
110
// ******************************************************************************************
 
111
 
 
112
tRecording & tRecording::operator= ( tRecording const & other )
 
113
{
 
114
    tASSERT(false);
 
115
 
 
116
    return *this;
 
117
}
 
118
 
 
119
// ******************************************************************************************
 
120
// *
 
121
// *    BeginSection
 
122
// *
 
123
// ******************************************************************************************
 
124
//!
 
125
//!     @param  name    the name of the new section
 
126
//!
 
127
// ******************************************************************************************
 
128
 
 
129
void tRecording::BeginSection( char const * name )
 
130
{
 
131
    DoGetStream() << "\n" << name;
 
132
}
 
133
 
 
134
// ******************************************************************************************
 
135
// *
 
136
// *    DoGetStream
 
137
// *
 
138
// ******************************************************************************************
 
139
//!
 
140
//!     @return     the stream to write to
 
141
//!
 
142
// ******************************************************************************************
 
143
 
 
144
/*
 
145
std::ostream & tRecording::DoGetStream( void ) const
 
146
{
 
147
    tASSERT(0); // pure virtual
 
148
 
 
149
    return std::ostream();
 
150
}
 
151
*/
 
152
 
 
153
// ******************************************************************************************
 
154
// *
 
155
// * ~tPlayback
 
156
// *
 
157
// ******************************************************************************************
 
158
//!
 
159
//!
 
160
// ******************************************************************************************
 
161
 
 
162
tPlayback::~tPlayback()
 
163
{
 
164
    // clear current Playback
 
165
    currentPlayback_ = 0;
 
166
}
 
167
 
 
168
// ******************************************************************************************
 
169
// *
 
170
// *    tPlayback
 
171
// *
 
172
// ******************************************************************************************
 
173
//!
 
174
//!
 
175
// ******************************************************************************************
 
176
 
 
177
tPlayback::tPlayback()
 
178
{
 
179
    tASSERT( !currentPlayback_ );
 
180
 
 
181
    // set current Playback
 
182
    currentPlayback_ = this;
 
183
}
 
184
 
 
185
// ******************************************************************************************
 
186
// *
 
187
// * tPlayback
 
188
// *
 
189
// ******************************************************************************************
 
190
//!
 
191
//!       @param  other   the source to copy from
 
192
//!
 
193
// ******************************************************************************************
 
194
 
 
195
tPlayback::tPlayback( tPlayback const & other )
 
196
{
 
197
    tASSERT(false);
 
198
}
 
199
 
 
200
// ******************************************************************************************
 
201
// *
 
202
// *  operator =
 
203
// *
 
204
// ******************************************************************************************
 
205
//!
 
206
//!       @param  other   the source to copy from
 
207
//!     @return         a reference to this
 
208
//!
 
209
// ******************************************************************************************
 
210
 
 
211
tPlayback & tPlayback::operator= ( tPlayback const & other )
 
212
{
 
213
    tASSERT(false);
 
214
 
 
215
    return *this;
 
216
}
 
217
// ******************************************************************************************
 
218
// *
 
219
// *    GetNextSection
 
220
// *
 
221
// ******************************************************************************************
 
222
//!
 
223
//!     @return     the name of the next section
 
224
//!
 
225
// ******************************************************************************************
 
226
 
 
227
const std::string & tPlayback::GetNextSection( void ) const
 
228
{
 
229
    return nextSection_;
 
230
}
 
231
 
 
232
/*
 
233
void EatWhite( std::istream & stream )
 
234
{
 
235
    std::ws( stream );
 
236
    return;
 
237
 
 
238
    // eat whitespace (read to end of line)
 
239
    //int c= ' ';
 
240
    //while ( isblank(c) )
 
241
    //    c = stream.get();
 
242
    //if ( c != '\n' )
 
243
    //    stream.unget();
 
244
}
 
245
*/
 
246
 
 
247
// ******************************************************************************************
 
248
// *
 
249
// *    AdvanceSection
 
250
// *
 
251
// ******************************************************************************************
 
252
//!
 
253
//!
 
254
// ******************************************************************************************
 
255
 
 
256
void tPlayback::AdvanceSection( void )
 
257
{
 
258
    std::istream& stream = DoGetStream();
 
259
 
 
260
    std::ws( stream );
 
261
    stream >> nextSection_;
 
262
    std::ws( stream );
 
263
 
 
264
    // memorize if end marking was seen
 
265
    static bool end = false;
 
266
    if ( nextSection_ == "END" )
 
267
        end = true;
 
268
 
 
269
    if ( !stream.good() )
 
270
    {
 
271
        if ( !end )
 
272
            con << "Recording ends abruptly here, prepare for a crash!\n";
 
273
 
 
274
        // stop playing back
 
275
        nextSection_ = "EOF";
 
276
        currentPlayback_ = NULL;
 
277
    }
 
278
}
 
279
 
 
280
class tRecordingCommandLineAnalyzer: public tCommandLineAnalyzer
 
281
{
 
282
private:
 
283
    virtual bool DoAnalyze( tCommandLineParser & parser )
 
284
    {
 
285
        tString filename;
 
286
        if ( parser.GetOption( filename, "--record" ) )
 
287
        {
 
288
            // start a recorder
 
289
            static tRecorderImp< tRecording, std::ofstream > recorder( static_cast< char const * >( filename ) );
 
290
            return true;
 
291
        }
 
292
 
 
293
        if ( parser.GetOption( filename, "--playback" ) )
 
294
        {
 
295
            // start a playback
 
296
            static tRecorderImp< tPlayback, std::ifstream > recorder( static_cast< char const * >( filename ) );
 
297
            recorder.InitPlayback();
 
298
            return true;
 
299
        }
 
300
 
 
301
        return false;
 
302
    }
 
303
 
 
304
    virtual void DoHelp( std::ostream & s )
 
305
    {                                      //
 
306
        s << "--record <filename>          : creates a DEBUG recording while running\n";
 
307
        s << "--playback <filename>        : plays back a DEBUG recording\n";
 
308
    }
 
309
};
 
310
 
 
311
static tRecordingCommandLineAnalyzer analyzer;